Compare commits
No commits in common. "6e9f0709b4eba4892b5cb85954d140994b098bfe" and "1b683f3395681f60d3237d47d52f0819875b6750" have entirely different histories.
6e9f0709b4
...
1b683f3395
2 changed files with 1 additions and 5 deletions
|
@ -4,8 +4,6 @@
|
|||
|
||||
Fix internal erronous buffer declaration.
|
||||
|
||||
Fix internal missing NULL check.
|
||||
|
||||
## Version 1.2
|
||||
|
||||
Add the `--generate-dir=<DIR>` option, which will generate all html into the
|
||||
|
|
|
@ -184,9 +184,7 @@ Args parse_args(int32_t argc, char **argv) {
|
|||
} else {
|
||||
printf("Directory \"%s\" exists.\n", args.generate_dir);
|
||||
}
|
||||
if (d) {
|
||||
closedir(d);
|
||||
}
|
||||
closedir(d);
|
||||
} else if (strcmp(argv[0], "--generate-enable-overwrite") == 0) {
|
||||
args.flags |= 4;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue