mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Disabled a function-call that crashes all msvcrt-based apps.
Further investigation will be done. svn path=/trunk/; revision=2108
This commit is contained in:
parent
d50f7d2496
commit
85a1907ad6
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: dllmain.c,v 1.8 2001/07/12 16:28:24 ekohl Exp $
|
/* $Id: dllmain.c,v 1.9 2001/07/27 23:54:05 ekohl Exp $
|
||||||
*
|
*
|
||||||
* ReactOS MSVCRT.DLL Compatibility Library
|
* ReactOS MSVCRT.DLL Compatibility Library
|
||||||
*/
|
*/
|
||||||
|
@ -75,8 +75,10 @@ DllMain(PVOID hinstDll,
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
_acmdln = (char *)GetCommandLineA();
|
_acmdln = (char *)GetCommandLineA();
|
||||||
if( BlockEnvToEnviron() )
|
|
||||||
return FALSE;
|
/* FIXME: This crashes all applications */
|
||||||
|
// if( BlockEnvToEnviron() )
|
||||||
|
// return FALSE;
|
||||||
|
|
||||||
/* FIXME: more initializations... */
|
/* FIXME: more initializations... */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue