diff options
author | Remi Collet <remi@remirepo.net> | 2021-06-18 14:18:48 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-06-18 14:18:48 +0200 |
commit | 5db2a2fa3a121b0b550fae42cb082c3774bcc80f (patch) | |
tree | 34d2d23abc6c68f14bbd656fabaa4b1aae5c0511 /rpminfo.c | |
parent | 495c53de87635ba2adf5dd80fff54953ed5df556 (diff) |
only reallocate when full
Diffstat (limited to 'rpminfo.c')
-rw-r--r-- | rpminfo.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -36,6 +36,7 @@ #define ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(pass_by_ref, name, type_hint, allow_null, default_value) \ ZEND_ARG_TYPE_INFO(pass_by_ref, name, type_hint, allow_null) #endif + #include "rpminfo_arginfo.h" ZEND_DECLARE_MODULE_GLOBALS(rpminfo) @@ -510,8 +511,10 @@ PHP_FUNCTION(rpmaddtag) RETURN_BOOL(0); } } - RPMINFO_G(max_tags) += 16; - RPMINFO_G(tags) = erealloc(RPMINFO_G(tags), RPMINFO_G(max_tags) * sizeof(rpmTagVal)); + if (RPMINFO_G(nb_tags) == RPMINFO_G(max_tags)) { + RPMINFO_G(max_tags) += 16; + RPMINFO_G(tags) = erealloc(RPMINFO_G(tags), RPMINFO_G(max_tags) * sizeof(rpmTagVal)); + } } else { RPMINFO_G(max_tags) = 16; RPMINFO_G(tags) = emalloc(RPMINFO_G(max_tags) * sizeof(rpmTagVal)); |