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

pull/2292/head
philsmd 4 years ago committed by GitHub
parent 13675d2965
commit 0b082e2e31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save