summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-03-04 12:08:54 +0800
committerXinchen Hui <laruence@php.net>2015-03-04 12:08:54 +0800
commita6ba7966de04747fc25228e7954146a485c6e402 (patch)
tree9b8ea6153f8c5fc26efc72862138ba9f686e85fe
parent4ebfc02274c3de9c32c649aa965713d9f1c04945 (diff)
downloadphp-git-a6ba7966de04747fc25228e7954146a485c6e402.tar.gz
Fixed memleak
-rw-r--r--ext/bz2/bz2.c4
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);