PORTNAME= php5
PORTVERSION= 5.2.0
PORTREVISION?= 0
PORTREVISION?= 1
CATEGORIES?= lang devel www
MASTER_SITES= ${MASTER_SITE_PHP:S,$,:release,} \
http://downloads.php.net/ilia/:rc \
--- ext/standard/string.c 2006/10/11 14:19:55 1.445.2.14.2.27
+++ ext/standard/string.c 2006/11/06 17:21:05 1.445.2.14.2.28
@@ -955,7 +955,12 @@
}
smart_str_0(&implstr);
- RETURN_STRINGL(implstr.c, implstr.len, 0);
+ if (implstr.len) {
+ RETURN_STRINGL(implstr.c, implstr.len, 0);
+ } else {
+ smart_str_free(&implstr);
+ RETURN_EMPTY_STRING();
+ }
/* }}} */