]> granicus.if.org Git - php/commitdiff
fixed typo in comment
authorMarkus Staab <maggus.staab@googlemail.com>
Tue, 27 Oct 2015 16:26:36 +0000 (17:26 +0100)
committerMarkus Staab <maggus.staab@googlemail.com>
Tue, 27 Oct 2015 16:26:36 +0000 (17:26 +0100)
introduced in eb32da13cd4f5dd0dae0e07a8f0b6c42d5678f5f

Zend/zend_alloc.c

index 06cda7536382e62d71dacf73f9266748687eab9c..6d8edbca4de91cfe684be36aaf7bcb4dfb38bc22 100644 (file)
@@ -1465,7 +1465,7 @@ static void *zend_mm_realloc_heap(zend_mm_heap *heap, void *ptr, size_t size, si
 #ifdef ZEND_WIN32
                        /* On Windows we don't have ability to extend huge block in-place.
                         * We allocate them with 2MB size granularuty, to avoid many 
-                        * reallocatioons whenthey when they are extended by small peaces
+                        * reallocatioons when they are extended by small peaces
                         */
                        new_size = ZEND_MM_ALIGNED_SIZE_EX(size, MAX(REAL_PAGE_SIZE, ZEND_MM_CHUNK_SIZE));
 #else