diff options
author | Anatol Belski <ab@php.net> | 2015-07-24 21:28:40 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-07-24 21:51:28 +0200 |
commit | 05496c7312c4bdfc799dcd080ff00e07d3a58480 (patch) | |
tree | 0232bb9e586695c2d8b67f3ce55c2038823addf7 /sapi/phpdbg/phpdbg.c | |
parent | 2eb845d0fa21a8ee0bce4c53ac9f1a5743a56aac (diff) | |
download | php-git-05496c7312c4bdfc799dcd080ff00e07d3a58480.tar.gz |
fix scope
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index 7ea2ea830d..0a84202509 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -1582,11 +1582,11 @@ phpdbg_main: phpdbg->ini_entries = ini_entries; if (phpdbg->startup(phpdbg) == SUCCESS) { + zend_mm_heap *mm_heap; #ifdef _WIN32 EXCEPTION_POINTERS *xp; __try { #endif - zend_mm_heap *mm_heap; void* (*_malloc)(size_t); void (*_free)(void*); void* (*_realloc)(void*, size_t); |