mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Show name of storage layer in case of initialization fault
This commit is contained in:
parent
32ff2a16fe
commit
447cc0eb15
1 changed files with 1 additions and 1 deletions
|
@ -586,7 +586,7 @@ ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers,
|
|||
|
||||
storage = handlers->init(params);
|
||||
if (!storage) {
|
||||
fprintf(stderr, "Cannot initialize zend_mm storage\n");
|
||||
fprintf(stderr, "Cannot initialize zend_mm storage [%s]\n", handlers->name);
|
||||
exit(255);
|
||||
}
|
||||
storage->handlers = handlers;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue