X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fperl.c;h=7558a50638390fc7918b8d1b60420d14a2f8a3a6;hb=89783745dc59079eab34e0c52de6e5e972f50eb2;hp=3c50528f9f62ebad0360642eac2c1089eaabecc0;hpb=ea4449a34b67428739a8420cfc70770c47099b91;p=collectd.git diff --git a/src/perl.c b/src/perl.c index 3c50528f..7558a506 100644 --- a/src/perl.c +++ b/src/perl.c @@ -700,11 +700,19 @@ static int pplugin_call_all (pTHX_ int type, ...) ds = va_arg (ap, data_set_t *); vl = va_arg (ap, value_list_t *); - if (-1 == data_set2av (aTHX_ ds, pds)) - return -1; + if (-1 == data_set2av (aTHX_ ds, pds)) { + av_clear (pds); + av_undef (pds); + pds = Nullav; + ret = -1; + } - if (-1 == value_list2hv (aTHX_ vl, ds, pvl)) - return -1; + if (-1 == value_list2hv (aTHX_ vl, ds, pvl)) { + hv_clear (pvl); + hv_undef (pvl); + pvl = Nullhv; + ret = -1; + } XPUSHs (sv_2mortal (newSVpv (ds->type, 0))); XPUSHs (sv_2mortal (newRV_noinc ((SV *)pds))); @@ -738,8 +746,12 @@ static int pplugin_call_all (pTHX_ int type, ...) n = va_arg (ap, notification_t *); - if (-1 == notification2hv (aTHX_ n, notif)) - return -1; + if (-1 == notification2hv (aTHX_ n, notif)) { + hv_clear (notif); + hv_undef (notif); + notif = Nullhv; + ret = -1; + } XPUSHs (sv_2mortal (newRV_noinc ((SV *)notif))); }