1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 12:29:35 +00:00

outfile: add missing check for empty string for --outfile-format

This commit is contained in:
philsmd 2020-01-24 09:42:44 +01:00 committed by GitHub
parent 13675d2965
commit 0b082e2e31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,8 @@ u32 outfile_format_parse (const char *format_string)
char *next = strtok_r (format, ",", &saveptr);
if (next == NULL) return 0;
u32 outfile_format = 0;
do