From: Stanislav Malyshev Date: Wed, 11 Jul 2012 05:31:24 +0000 (-0700) Subject: fix comment X-Git-Tag: php-5.5.0alpha1~75 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b0573363a187e75414df72a0f3fe5c6f6c1be03;p=php fix comment --- diff --git a/ext/standard/string.c b/ext/standard/string.c index e5da0a4fb9..6cc7659edd 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -13,7 +13,7 @@ | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Rasmus Lerdorf | - | Stig S�ther Bakken | + | Stig Sæther Bakken | | Zeev Suraski | +----------------------------------------------------------------------+ */ @@ -132,7 +132,7 @@ static char *php_bin2hex(const unsigned char *old, const size_t oldlen, size_t * size_t i, j; result = (unsigned char *) safe_emalloc(oldlen, 2 * sizeof(char), 1); - + for (i = j = 0; i < oldlen; i++) { result[j++] = hexconvtab[old[i] >> 4]; result[j++] = hexconvtab[old[i] & 15];