diff options
author | Wez Furlong <wez@php.net> | 2002-03-17 22:50:59 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-03-17 22:50:59 +0000 |
commit | d2d8762267de33b954363189b4ec710e70527a2a (patch) | |
tree | eb1a94dcc817decc20651b5999ccf3ea7699aadc /ext/pgsql/pgsql.c | |
parent | 19e82a49f96393a7ae93331db73ef895f3c61376 (diff) | |
download | php-git-d2d8762267de33b954363189b4ec710e70527a2a.tar.gz |
Streams now make more use of the memory manager, so tracking down
leaking streams should be easier.
# I hate these big commits
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 43eae5d0d4..e82379127e 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1468,7 +1468,7 @@ PHP_FUNCTION(pg_trace) ZEND_FETCH_RESOURCE2(pgsql, PGconn *, z_pgsql_link, id, "PostgreSQL link", le_link, le_plink); convert_to_string_ex(z_filename); - stream = php_stream_open_wrapper(Z_STRVAL_PP(z_filename), mode, ENFORCE_SAFE_MODE|REPORT_ERRORS, NULL TSRMLS_CC); + stream = php_stream_open_wrapper(Z_STRVAL_PP(z_filename), mode, ENFORCE_SAFE_MODE|REPORT_ERRORS, NULL); if (!stream) { RETURN_FALSE; |