mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-16 04:49:24 +00:00
Merge pull request #1088 from philsmd/master
minor: check return value of hc_stat () and use fclose () in case of error
This commit is contained in:
commit
a969cb0768
@ -306,7 +306,12 @@ static int read_kernel_binary (hashcat_ctx_t *hashcat_ctx, const char *kernel_fi
|
||||
{
|
||||
hc_stat_t st;
|
||||
|
||||
hc_stat (kernel_file, &st);
|
||||
if (hc_stat (kernel_file, &st))
|
||||
{
|
||||
fclose (fp);
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
char *buf = (char *) hcmalloc (st.st_size + 1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user