systemd-analyze: free unit_times only if it is not NULL

This commit is contained in:
Lukas Nykryn 2013-03-01 18:30:00 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent 684ecf306a
commit 4534824035

View file

@ -237,9 +237,11 @@ static int acquire_time_data(DBusConnection *bus, struct unit_times **out)
*out = unit_times;
return c;
fail:
for (; c >= 0; c--)
free(unit_times[c].name);
free(unit_times);
if (unit_times) {
for (; c >= 0; c--)
free(unit_times[c].name);
free(unit_times);
}
return r;
}