Commit:    68c265ce372860a09f6111f99684ff012dbbc602
Author:    Dmitry Stogov <dmi...@zend.com>         Fri, 1 Mar 2013 22:57:53 
+0400
Parents:   28cd079adb2b6abbfbeb19382971302eb1efd92c
Branches:  PHP-5.5 master

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

Log:
typo

Changed paths:
  M  shared_alloc_posix.c


Diff:
diff --git a/shared_alloc_posix.c b/shared_alloc_posix.c
index 418280a..46f0257 100644
--- a/shared_alloc_posix.c
+++ b/shared_alloc_posix.c
@@ -45,7 +45,7 @@ static int create_segments(size_t requested_size, 
zend_shared_segment_posix ***s
        *shared_segments_p = (zend_shared_segment_posix **) calloc(1, 
sizeof(zend_shared_segment_posix) + sizeof(void *));
        if (!*shared_segments_p) {
                *error_in = "calloc";
-               rerurn ALLOC_FAILURE;
+               return ALLOC_FAILURE;
        }
        shared_segment = (zend_shared_segment_posix *)((char 
*)(*shared_segments_p) + sizeof(void *));
        (*shared_segments_p)[0] = shared_segment;


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

Reply via email to