Browse Source

Make pclose() respect references.

PEAR_1_4DEV
Ilia Alshanetsky 23 years ago
parent
commit
abe2afcf6e
  1. 3
      ext/standard/file.c

3
ext/standard/file.c

@ -849,7 +849,8 @@ PHP_FUNCTION(pclose)
php_stream_from_zval(stream, arg1);
RETURN_LONG(php_stream_close(stream));
zend_list_delete(stream->rsrc_id);
RETURN_LONG(FG(pclose_ret));
}
/* }}} */

Loading…
Cancel
Save