From: Dmitry Stogov Date: Thu, 31 Aug 2006 13:00:12 +0000 (+0000) Subject: Show name of storage layer in case of initialization fault X-Git-Tag: RELEASE_1_0_0RC1~1816 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=447cc0eb15ee76fc47e8052258eb04942aed8ab8;p=php Show name of storage layer in case of initialization fault --- diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 23a925233d..840387548c 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -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;