From: Ilia Alshanetsky Date: Wed, 21 Aug 2002 13:14:57 +0000 (+0000) Subject: Added monetary.h to prevent compile warning. X-Git-Tag: RELEASE_0_91~342 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea1bb5e17293dc51856a814a8ef59f92059bd848;p=php Added monetary.h to prevent compile warning. Fixed a memory leak inside money_format function, which occures if the parameters to the function are not valid. Fixed a segmentation fault inside money_format in the event the value to be formated is >1024 bytes. Made the return value of money_format be null terminated. --- diff --git a/ext/standard/string.c b/ext/standard/string.c index 48f87e02b3..7da32a9ec3 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -33,6 +33,9 @@ #ifdef HAVE_LANGINFO_H # include #endif +#ifdef HAVE_MONETARY_H +# include +#endif #include "scanf.h" #include "zend_API.h" #include "zend_execute.h" @@ -3909,8 +3912,8 @@ PHP_FUNCTION(str_rot13) Convert monetary value(s) to string */ PHP_FUNCTION(money_format) { - int format_len, str_len = 1024; - char *format, *str = emalloc(str_len); + int format_len = 0, str_len; + char *format, *str; double value; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sd", @@ -3918,9 +3921,12 @@ PHP_FUNCTION(money_format) { return; } + str_len = format_len + 1024; + str = emalloc(str_len); str_len = strfmon(str, str_len, format, value); + str[str_len] = 0; - RETURN_STRINGL(erealloc(str, strlen), str_len, 0); + RETURN_STRINGL(erealloc(str, str_len + 1), str_len, 0); } /* }}} */