diff options
-rw-r--r-- | ext/bz2/bz2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c index 969c5e131c..c463a68e84 100644 --- a/ext/bz2/bz2.c +++ b/ext/bz2/bz2.c @@ -269,6 +269,10 @@ PHP_BZ2_API php_stream *_php_stream_bz2open(php_stream_wrapper *wrapper, *opened_path = zend_string_init(path_copy, strlen(path_copy), 0); } +#ifdef VIRTUAL_DIR + efree(path_copy); +#endif + if (bz_file == NULL) { /* that didn't work, so try and get something from the network/wrapper */ stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); |