Skip to content
Snippets Groups Projects
Commit 7a7d14d4 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Fix invalid free on windows.

parent 835f4bee
No related branches found
No related tags found
No related merge requests found
Pipeline #9634 passed
...@@ -89,7 +89,9 @@ int main(int argc, const char **argv) { ...@@ -89,7 +89,9 @@ int main(int argc, const char **argv) {
handle_command(line); handle_command(line);
free(line); #ifndef WIN32
free(line);
#endif
} }
stop = true; stop = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment