X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=win32%2Fperllib.c;h=da8e13d965f5c64ba2e80603e61993dd335ca208;hb=a33ef3f0a6d2ef2c922989e71af9ce07d6f2d25d;hp=1e4ba090019d8c2ae5544e7ca27e6b9814d81358;hpb=45496817146ba03d8f19170832148858221299fd;p=p5sagit%2Fp5-mst-13.2.git diff --git a/win32/perllib.c b/win32/perllib.c index 1e4ba09..da8e13d 100644 --- a/win32/perllib.c +++ b/win32/perllib.c @@ -207,17 +207,25 @@ RunPerl(int argc, char **argv, char **env) { int exitstatus; PerlInterpreter *my_perl, *new_perl = NULL; - -#ifndef __BORLANDC__ - /* XXX this _may_ be a problem on some compilers (e.g. Borland) that - * want to free() argv after main() returns. As luck would have it, - * Borland's CRT does the right thing to argv[0] already. */ + OSVERSIONINFO osver; char szModuleName[MAX_PATH]; + char *arg0 = argv[0]; + char *ansi = NULL; + bool use_environ = (env == environ); - Win_GetModuleFileName(NULL, szModuleName, sizeof(szModuleName)); - (void)win32_longpath(szModuleName); - argv[0] = szModuleName; -#endif + osver.dwOSVersionInfoSize = sizeof(osver); + GetVersionEx(&osver); + + if (osver.dwMajorVersion > 4) { + WCHAR widename[MAX_PATH]; + GetModuleFileNameW(NULL, widename, sizeof(widename)/sizeof(WCHAR)); + argv[0] = ansi = win32_ansipath(widename); + } + else { + Win_GetModuleFileName(NULL, szModuleName, sizeof(szModuleName)); + (void)win32_longpath(szModuleName); + argv[0] = szModuleName; + } #ifdef PERL_GLOBAL_STRUCT #define PERLVAR(var,type) /**/ @@ -238,6 +246,16 @@ RunPerl(int argc, char **argv, char **env) perl_construct(my_perl); PL_perl_destruct_level = 0; + /* PERL_SYS_INIT() may update the environment, e.g. via ansify_path(). + * This may reallocate the RTL environment block. Therefore we need + * to make sure that `env` continues to have the same value as `environ` + * if we have been called this way. If we have been called with any + * other value for `env` then all environment munging by PERL_SYS_INIT() + * will be lost again. + */ + if (use_environ) + env = environ; + exitstatus = perl_parse(my_perl, xs_init, argc, argv, env); if (!exitstatus) { #if defined(TOP_CLONE) && defined(USE_ITHREADS) /* XXXXXX testing */ @@ -259,6 +277,11 @@ RunPerl(int argc, char **argv, char **env) } #endif + /* At least the Borland RTL wants to free argv[] after main() returns. */ + argv[0] = arg0; + if (ansi) + win32_free(ansi); + PERL_SYS_TERM(); return (exitstatus);