1
1

One of the include was missing. That's a big problem on 64 bits architecture where the default return value

is int (mostly 4 bytes) and strdup normally return a char* (usually 8 bytes). The result: stack corrupted
and other weird things ...

This commit was SVN r5725.
Этот коммит содержится в:
George Bosilca 2005-05-17 01:02:40 +00:00
родитель 54a481cc14
Коммит dde75fe032

Просмотреть файл

@ -22,6 +22,8 @@
#include "orte_config.h"
#include "include/orte_constants.h"
#include <string.h>
#include "class/ompi_list.h"
#include "util/output.h"
#include "mca/errmgr/errmgr.h"