1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-31 07:51:21 +03:00

journalctl: free arg_file on exit

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2014-03-29 11:58:32 -04:00
parent 3cadce7d33
commit a36b8debe6

View File

@ -1937,5 +1937,7 @@ int main(int argc, char *argv[]) {
finish:
pager_close();
strv_free(arg_file);
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}