From: Nikita Popov Date: Wed, 12 Jun 2019 14:47:48 +0000 (+0200) Subject: Mark label as potentially unused X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff8002fc7c3cbf9ee01d6d68cccbbd9460314ce4;p=php Mark label as potentially unused --- diff --git a/ext/opcache/shared_alloc_mmap.c b/ext/opcache/shared_alloc_mmap.c index 266fbebd03..8f900c1590 100644 --- a/ext/opcache/shared_alloc_mmap.c +++ b/ext/opcache/shared_alloc_mmap.c @@ -91,7 +91,7 @@ static int create_segments(size_t requested_size, zend_shared_segment ***shared_ return ALLOC_FAILURE; } -success: +success: ZEND_ATTRIBUTE_UNUSED; *shared_segments_count = 1; *shared_segments_p = (zend_shared_segment **) calloc(1, sizeof(zend_shared_segment) + sizeof(void *)); if (!*shared_segments_p) {