Merge pull request #177 from metalefty/v0.6

Apply aa983d2b to v0.6 branch
This commit is contained in:
jsorg71 2014-10-29 19:07:59 -07:00
commit 8e5bd16c1e

View File

@ -2114,9 +2114,13 @@ void APP_CC
g_clearenv(void)
{
#if defined(_WIN32)
#else
#if defined(BSD)
environ[0] = 0;
#else
environ = 0;
#endif
#endif
}
/*****************************************************************************/