diff options
author | Antony Dovgal <tony2001@php.net> | 2008-07-23 11:25:14 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2008-07-23 11:25:14 +0000 |
commit | 28a22396d4c12253f77c11095f37944a0dd661b9 (patch) | |
tree | 4a67877db12d22a70a443b40a74a74ee0e2efe9a /ext/standard/proc_open.c | |
parent | 16ace1828e85f7cbe1179a29c88dad6d921e2a71 (diff) | |
download | php-git-28a22396d4c12253f77c11095f37944a0dd661b9.tar.gz |
MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSE
Diffstat (limited to 'ext/standard/proc_open.c')
-rw-r--r-- | ext/standard/proc_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c index f6f469a54a..cd4c7b70e0 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -969,7 +969,7 @@ PHP_FUNCTION(proc_open) zval *retfp; /* nasty hack; don't copy it */ - stream->flags |= PHP_STREAM_FLAG_NO_SEEK | PHP_STREAM_FLAG_FCLOSE; + stream->flags |= PHP_STREAM_FLAG_NO_SEEK; MAKE_STD_ZVAL(retfp); php_stream_to_zval(stream, retfp); |