From 3104882cf873308c43dca20bdfd698dd3470a246 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Thu, 13 Oct 2016 09:50:32 +0200 Subject: Revert "export symbol missing by phpdbg" This reverts commit 611ab7fe5b9fe41de56c25b1d348a866794b1fb1. Overseen strpprintf is there --- Zend/zend_exceptions.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Zend/zend_exceptions.c') diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 388c982115..89c94eb56f 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -696,6 +696,18 @@ size_t zend_spprintf(char **message, size_t max_len, const char *format, ...) /* } /* }}} */ +zend_string *zend_strpprintf(size_t max_len, const char *format, ...) /* {{{ */ +{ + va_list arg; + zend_string *str; + + va_start(arg, format); + str = zend_vstrpprintf(max_len, format, arg); + va_end(arg); + return str; +} +/* }}} */ + /* {{{ proto string Exception|Error::__toString() Obtain the string representation of the Exception object */ ZEND_METHOD(exception, __toString) -- cgit v1.2.1