1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 16:38:25 +02:00

Fix missing va_end() found by Coverity

This commit is contained in:
Rasmus Lerdorf
2011-08-05 22:18:42 +00:00
parent 8a929d8942
commit 0c2bbe47b2
+1
View File
@@ -735,6 +735,7 @@ ZEND_API void zend_hash_apply_with_arguments(HashTable *ht TSRMLS_DC, apply_func
p = p->pListNext;
}
if (result & ZEND_HASH_APPLY_STOP) {
va_end(args);
break;
}
va_end(args);