summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.c
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2016-12-14 18:10:36 +0100
committerNikita Popov <nikic@php.net>2016-12-14 18:11:27 +0100
commitf99bf7036033f4dd95b8f56c8697af7f8963ab9f (patch)
treee21fd21c4f2dc3a3b543dc5cedda14a9a7107e68 /sapi/phpdbg/phpdbg.c
parentd663296e3bb5501f15c395990d11c49acf03ef8d (diff)
downloadphp-git-f99bf7036033f4dd95b8f56c8697af7f8963ab9f.tar.gz
Partially fix bug #70492
The libmagic portion is missing.
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r--sapi/phpdbg/phpdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c
index 7eeaf48d79..9cc60286c5 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -1300,7 +1300,7 @@ void phpdbg_free_wrapper(void *p ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) /* {{
*/
} else {
phpdbg_watch_efree(p);
- return _zend_mm_free(heap, p ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
+ _zend_mm_free(heap, p ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
}
} /* }}} */