From b464bbf1475b1e5ce13308e9c02dd6ff178bc96a Mon Sep 17 00:00:00 2001 From: Arnaud Le Blanc Date: Mon, 12 Aug 2024 12:19:16 +0200 Subject: [PATCH] Ensure proper alignment of zend_accel_shared_globals.interned_strings --- ext/opcache/ZendAccelerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/ZendAccelerator.h b/ext/opcache/ZendAccelerator.h index 075ff9aee98af..682677441e413 100644 --- a/ext/opcache/ZendAccelerator.h +++ b/ext/opcache/ZendAccelerator.h @@ -280,7 +280,7 @@ typedef struct _zend_accel_shared_globals { const void **jit_exit_groups; /* Interned Strings Support (must be the last element) */ - zend_string_table interned_strings; + ZEND_SET_ALIGNED(ZEND_STRING_TABLE_POS_ALIGNMENT, zend_string_table interned_strings); } zend_accel_shared_globals; #ifdef ZEND_WIN32