From: Ilia Alshanetsky Date: Mon, 8 Aug 2005 16:49:30 +0000 (+0000) Subject: Adjust date("") handling. X-Git-Tag: BEFORE_UNICODE_MERGE~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=919b0bd5b44cc2e1572370616592c43d3403e3b7;p=php Adjust date("") handling. --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index b033f6f904..ea105b0fc5 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -347,6 +347,10 @@ static char *date_format(char *format, int format_len, timelib_time *t, int loca timelib_time_offset *offset; timelib_sll isoweek, isoyear; + if (!format_len) { + return estrdup(""); + } + if (localtime) { if (t->zone_type == TIMELIB_ZONETYPE_ABBR) { offset = timelib_time_offset_ctor(); @@ -369,7 +373,6 @@ static char *date_format(char *format, int format_len, timelib_time *t, int loca } } buffer[32] = '\0'; - smart_str_appends(&string, ""); timelib_isoweek_from_date(t->y, t->m, t->d, &isoweek, &isoyear); for (i = 0; i < format_len; i++) {