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>
Dieser Commit ist enthalten in:
Ursprung
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)) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren