diff options
author | Anatol Belski <ab@php.net> | 2015-09-24 17:29:51 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-09-25 08:30:44 +0200 |
commit | 67aff16d94520f39617ab4b04d2298d24ab60f08 (patch) | |
tree | 51e4244f75b84a6a3eb044c155a00016daf9ecd8 /ext/opcache/shared_alloc_win32.c | |
parent | c21d18ef950490d0931f3d509fc271502813c3dd (diff) | |
download | php-git-67aff16d94520f39617ab4b04d2298d24ab60f08.tar.gz |
fix ident
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 b8e1a07896..68e5e0cba7 100644 --- a/ext/opcache/shared_alloc_win32.c +++ b/ext/opcache/shared_alloc_win32.c @@ -204,7 +204,7 @@ static int create_segments(size_t requested_size, zend_shared_segment ***shared_ err = GetLastError(); if (ret == ALLOC_FAIL_MAPPING) { /* Mapping failed, wait for mapping object to get freed and retry */ - CloseHandle(memfile); + CloseHandle(memfile); memfile = NULL; if (++map_retries >= MAX_MAP_RETRIES) { break; |