mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 10:08:42 +00:00
ui-repolist: fix resource leak: free before return
Coverity-id: 13931 Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
525c815cc4
commit
7ef1a47991
@ -18,8 +18,10 @@ static time_t read_agefile(char *path)
|
||||
char *buf;
|
||||
struct strbuf date_buf = STRBUF_INIT;
|
||||
|
||||
if (readfile(path, &buf, &size))
|
||||
if (readfile(path, &buf, &size)) {
|
||||
free(buf);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (parse_date(buf, &date_buf) == 0)
|
||||
result = strtoul(date_buf.buf, NULL, 10);
|
||||
|
Loading…
Reference in New Issue
Block a user