From: David Coallier Date: Wed, 12 Dec 2007 03:29:31 +0000 (+0000) Subject: - Nitpicking, using same code (without unicode handling) than in HEAD X-Git-Tag: RELEASE_1_3_1~518 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c1087f0aa68c53080239ff704fb18ecdbe0810a;p=php - Nitpicking, using same code (without unicode handling) than in HEAD just removed useless } else { --- diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 4a6c09b16f..bed700bae9 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -1481,9 +1481,9 @@ SPL_METHOD(Array, serialize) if (buf.c) { RETURN_STRINGL(buf.c, buf.len, 0); - } else { - RETURN_NULL(); } + + RETURN_NULL(); } /* }}} */