1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00

Fixed small leak

This commit is contained in:
Moriyoshi Koizumi
2003-01-07 08:57:27 +00:00
parent 1638ddd4c2
commit 346fa499ca

View File

@@ -184,6 +184,9 @@ static size_t userfilter_write(php_stream *stream, php_stream_filter *thisfilter
if (retval)
zval_ptr_dtor(&retval);
if (zbuf)
zval_ptr_dtor(&zbuf);
return wrote;
}