From 0ce8a503a997cdfe2cda4c01fae4786f0a937873 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Sat, 6 Sep 2008 16:35:48 +0000 Subject: [PATCH] don't corrupt the heap by storing unneeded values in the wrong places svn path=/trunk/; revision=35992 --- reactos/lib/sdk/crt/stdio/popen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/stdio/popen.c b/reactos/lib/sdk/crt/stdio/popen.c index bb6f93c3660..199c3d9cb72 100644 --- a/reactos/lib/sdk/crt/stdio/popen.c +++ b/reactos/lib/sdk/crt/stdio/popen.c @@ -117,7 +117,7 @@ FILE *_tpopen (const _TCHAR *cm, const _TCHAR *md) /* program name, pipe mode */ CloseHandle(hReadPipe); } - pf->_tmpfname = ProcessInformation.hProcess; + //pf->_tmpfname = ProcessInformation.hProcess; return( pf ); }