From: Christoph M. Becker Date: Fri, 26 Aug 2016 16:50:30 +0000 (+0200) Subject: Fix #72949: Typo in opcache error message X-Git-Tag: php-7.0.11RC1~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4c3eb55a75f59fd73d0ee034ccaaf81ae46d8ec;p=php Fix #72949: Typo in opcache error message --- diff --git a/NEWS b/NEWS index 1fc159a17b..b2f9c4b3a6 100644 --- a/NEWS +++ b/NEWS @@ -42,6 +42,9 @@ PHP NEWS . Fixed invalid handle error with Implicit Result Sets. (Chris Jones) . Fixed bug #72524 (Binding null values triggers ORA-24816 error). (Chris Jones) +- Opcache: + . Fixed bug #72949 (Typo in opcache error message). (cmb) + - PDO: . Fixed bug #72788 (Invalid memory access when using persistent PDO connection). (Keyur) diff --git a/ext/opcache/shared_alloc_win32.c b/ext/opcache/shared_alloc_win32.c index c71f253b0a..dbf3999f55 100644 --- a/ext/opcache/shared_alloc_win32.c +++ b/ext/opcache/shared_alloc_win32.c @@ -176,7 +176,7 @@ static int zend_shared_alloc_reattach(size_t requested_size, char **error_in) } #endif err = ERROR_INVALID_ADDRESS; - zend_win_error_message(ACCEL_LOG_FATAL, "Base address marks unusable memory region. Please setup opcache.file_cache and opcache.file_cache_callback directives for more convenient Opcache usage", err); + zend_win_error_message(ACCEL_LOG_FATAL, "Base address marks unusable memory region. Please setup opcache.file_cache and opcache.file_cache_fallback directives for more convenient Opcache usage", err); return ALLOC_FAILURE; }