зеркало из https://github.com/mozilla/pjs.git
__MD_GetEnv now calls standard C's getenv if environment variable not in NSPR's table. r=beard
This commit is contained in:
Родитель
a1db4e901d
Коммит
b0a5c50faa
|
@ -31,6 +31,7 @@
|
|||
#include <fcntl.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stat.h>
|
||||
#include <stdarg.h>
|
||||
#include <unix.h>
|
||||
|
@ -44,6 +45,9 @@
|
|||
|
||||
#include "mdmac.h"
|
||||
|
||||
// undefine getenv, so that _MD_GetEnv can call the version in NSStdLib::nsEnvironment.cpp.
|
||||
#undef getenv
|
||||
|
||||
//
|
||||
// Local routines
|
||||
//
|
||||
|
@ -181,7 +185,7 @@ char *_MD_GetEnv(const char *name)
|
|||
currentVariable = currentVariable->next;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return getenv(name);
|
||||
}
|
||||
|
||||
PR_IMPLEMENT(int)
|
||||
|
|
Загрузка…
Ссылка в новой задаче