From: Dmitry Stogov Date: Mon, 10 Jun 2013 08:05:20 +0000 (+0400) Subject: Fixed comments X-Git-Tag: php-5.5.0~29^2~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53e6529203932b709a0925886b0997d91d682a12;p=php Fixed comments --- diff --git a/ext/opcache/ZendAccelerator.c b/ext/opcache/ZendAccelerator.c index 922fc91d27..875a4727a8 100644 --- a/ext/opcache/ZendAccelerator.c +++ b/ext/opcache/ZendAccelerator.c @@ -1617,10 +1617,12 @@ static zend_op_array *persistent_compile_file(zend_file_handle *file_handle, int from_shared_memory = 0; persistent_script = compile_and_cache_file(file_handle, type, key, key_length, &op_array, &from_shared_memory TSRMLS_CC); - /* Something went wrong during compilation, returning NULL */ + /* Caching is disabled, returning op_array; + * or something went wrong during compilation, returning NULL + */ if (!persistent_script) { SHM_PROTECT(); - return op_array; /* Presently always NULL, but not necessary in the future */ + return op_array; } } else {