mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 10:08:42 +00:00
ui-repolist: initialize char *buf to NULL
readfile() can fail if the agefile is not readable. Make sure free() does not free an ininitialized string. Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
4458abf641
commit
6edc84bc44
@ -15,7 +15,7 @@ static time_t read_agefile(char *path)
|
||||
{
|
||||
time_t result;
|
||||
size_t size;
|
||||
char *buf;
|
||||
char *buf = NULL;
|
||||
struct strbuf date_buf = STRBUF_INIT;
|
||||
|
||||
if (readfile(path, &buf, &size)) {
|
||||
|
Loading…
Reference in New Issue
Block a user