]> granicus.if.org Git - php/commitdiff
Delete extra semicolon
authorZiMuyang <yuanhualong666@gmail.com>
Mon, 12 Jun 2017 10:35:13 +0000 (18:35 +0800)
committerNikita Popov <nikita.ppv@gmail.com>
Mon, 12 Jun 2017 21:14:11 +0000 (23:14 +0200)
Zend/zend_alloc.c

index 633421734e36b105e8a7492beeb7a4a7d322bca2..678c852e8b406489858e7d7ec28735d7b73d2c16 100644 (file)
@@ -1222,7 +1222,7 @@ static zend_never_inline void *zend_mm_alloc_small_slow(zend_mm_heap *heap, uint
        end = (zend_mm_free_slot*)((char*)bin + (bin_data_size[bin_num] * (bin_elements[bin_num] - 1)));
        heap->free_slot[bin_num] = p = (zend_mm_free_slot*)((char*)bin + bin_data_size[bin_num]);
        do {
-               p->next_free_slot = (zend_mm_free_slot*)((char*)p + bin_data_size[bin_num]);;
+               p->next_free_slot = (zend_mm_free_slot*)((char*)p + bin_data_size[bin_num]);
 #if ZEND_DEBUG
                do {
                        zend_mm_debug_info *dbg = (zend_mm_debug_info*)((char*)p + bin_data_size[bin_num] - ZEND_MM_ALIGNED_SIZE(sizeof(zend_mm_debug_info)));