Fix path buffer size

This commit is contained in:
Oliver Jowett 2014-11-23 16:32:22 +00:00
parent 6910a4bf4d
commit d0174994cb

View file

@ -793,7 +793,7 @@ int main(int argc, char **argv) {
#ifndef _WIN32
} else if (!strcmp(argv[j], "--write-json") && more) {
++j;
Modes.json_path = malloc(strlen(argv[j]) + 11);
Modes.json_path = malloc(strlen(argv[j]) + 15);
strcpy(Modes.json_path, argv[j]);
strcat(Modes.json_path, "/aircraft.json");
} else if (!strcmp(argv[j], "--write-json-every") && more) {