Author: cwittich
Date: Sat Sep 6 11:35:48 2008
New Revision: 35992
URL:
http://svn.reactos.org/svn/reactos?rev=35992&view=rev
Log:
don't corrupt the heap by storing unneeded values in the wrong places
Modified:
trunk/reactos/lib/sdk/crt/stdio/popen.c
Modified: trunk/reactos/lib/sdk/crt/stdio/popen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/popen.c?…
==============================================================================
--- trunk/reactos/lib/sdk/crt/stdio/popen.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/stdio/popen.c [iso-8859-1] Sat Sep 6 11:35:48 2008
@@ -117,7 +117,7 @@
CloseHandle(hReadPipe);
}
- pf->_tmpfname = ProcessInformation.hProcess;
+ //pf->_tmpfname = ProcessInformation.hProcess;
return( pf );
}