lib/download.c: CID 62691 (dereference NULL check)

This commit is contained in:
Juan RP 2014-10-06 08:23:34 +02:00
parent fae4ef0cd6
commit 3a77ab0847

View File

@ -287,8 +287,8 @@ fetch_file_out:
(void)close(fd);
if (url != NULL)
fetchFreeURL(url);
if (tempfile != NULL)
free(tempfile);
free(tempfile);
return rv;
}