From: Dmitry Stogov Date: Tue, 5 Mar 2013 11:46:21 +0000 (+0400) Subject: Fixed uninitialized variable X-Git-Tag: php-5.5.0beta1~42^2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ab1759369d16d46bf20b175c6158f38fd816893;p=php Fixed uninitialized variable --- diff --git a/ZendAccelerator.c b/ZendAccelerator.c index aa226706ec..9690bb8122 100644 --- a/ZendAccelerator.c +++ b/ZendAccelerator.c @@ -1216,6 +1216,7 @@ static zend_persistent_script *compile_and_cache_file(zend_file_handle *file_han * function and class tables (see: https://bugs.php.net/bug.php?id=64353) */ if (zend_stream_fixup(file_handle, &buf, &size TSRMLS_CC) == FAILURE) { + *op_array_p = NULL; return NULL; } }