Commit:    3b0573363a187e75414df72a0f3fe5c6f6c1be03
Author:    Stanislav Malyshev <s...@php.net>         Tue, 10 Jul 2012 22:31:24 
-0700
Parents:   c164e6b5a37b668a016846060d8e039d6af32ae5
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=3b0573363a187e75414df72a0f3fe5c6f6c1be03

Log:
fix comment

Changed paths:
  M  ext/standard/string.c


Diff:
diff --git a/ext/standard/string.c b/ext/standard/string.c
index e5da0a4..6cc7659 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -13,7 +13,7 @@
    | lice...@php.net so we can mail you a copy immediately.               |
    +----------------------------------------------------------------------+
    | Authors: Rasmus Lerdorf <ras...@php.net>                             |
-   |          Stig S�ther Bakken <s...@php.net>                            |
+   |          Stig S�ther Bakken <s...@php.net>                            |
    |          Zeev Suraski <z...@zend.com>                                |
    +----------------------------------------------------------------------+
  */
@@ -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];


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to