diff options
author | Anatol Belski <ab@php.net> | 2015-10-04 14:33:09 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-10-04 16:36:53 +0200 |
commit | a549a3ac179ec98e2e706e51f3df70e3bda553b2 (patch) | |
tree | 3df2b999a86d58914169fec789ba45c4ea72eaca /ext/opcache/shared_alloc_win32.c | |
parent | c97198e18145fd1f90a4b09979cbec25afa20afd (diff) | |
download | php-git-a549a3ac179ec98e2e706e51f3df70e3bda553b2.tar.gz |
improve error message
Diffstat (limited to 'ext/opcache/shared_alloc_win32.c')
-rw-r--r-- | ext/opcache/shared_alloc_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/shared_alloc_win32.c b/ext/opcache/shared_alloc_win32.c index 9b7bfceec1..2a86e6b814 100644 --- a/ext/opcache/shared_alloc_win32.c +++ b/ext/opcache/shared_alloc_win32.c @@ -152,7 +152,7 @@ static int zend_shared_alloc_reattach(size_t requested_size, char **error_in) info.State != MEM_FREE || info.RegionSize < requested_size) { err = ERROR_INVALID_ADDRESS; - zend_win_error_message(ACCEL_LOG_FATAL, "Unable to reattach to base address", err); + zend_win_error_message(ACCEL_LOG_FATAL, "Base address marks unusable memory region", err); return ALLOC_FAILURE; } |