Skip to content

Commit f621f0b

Browse files
committed
strlen() returns size_t
1 parent a62ffb7 commit f621f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/zend_accelerator_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ static zval* accelerator_get_scripts(TSRMLS_D)
429429
for (cache_entry = ZCSG(hash).hash_table[i]; cache_entry; cache_entry = cache_entry->next) {
430430
zend_persistent_script *script;
431431
char *str;
432-
int len;
432+
size_t len;
433433

434434
if (cache_entry->indirect) continue;
435435

0 commit comments

Comments
 (0)