Skip to content

Commit 1910740

Browse files
committed
use noinline in another place
1 parent 4e9b4fa commit 1910740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/hash/hash_xxhash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ zend_always_inline static void _PHP_XXH3_Init(PHP_XXH3_64_CTX *ctx, HashTable *a
192192
}
193193
size_t len = ZSTR_LEN(secret_string);
194194
if (len < PHP_XXH3_SECRET_SIZE_MIN) {
195-
zend_string_release(secret_string);
195+
zend_string_release_noinline(secret_string);
196196
zend_throw_error(NULL, "%s: Secret length must be >= %u bytes, %zu bytes passed", algo_name, XXH3_SECRET_SIZE_MIN, len);
197197
return;
198198
}

0 commit comments

Comments
 (0)