diff options
| author | Wilson E. Alvarez | 2017-08-23 20:54:02 -0400 |
|---|---|---|
| committer | Wilson E. Alvarez | 2017-08-25 21:12:19 -0400 |
| commit | bd257153dc9748bd9ab3f580437c3a28cc5348ab (patch) | |
| tree | 8fb8c8f601bbae139876c2a6c3cd891b30de6d3a /platform/x11/godot_x11.cpp | |
| parent | d9e94fa0c308f8f157e71fb03bab5834308b56ee (diff) | |
| download | godot-bd257153dc9748bd9ab3f580437c3a28cc5348ab.tar.gz godot-bd257153dc9748bd9ab3f580437c3a28cc5348ab.tar.zst godot-bd257153dc9748bd9ab3f580437c3a28cc5348ab.zip | |
Diffstat (limited to 'platform/x11/godot_x11.cpp')
| -rw-r--r-- | platform/x11/godot_x11.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/x11/godot_x11.cpp b/platform/x11/godot_x11.cpp index 6f418b213..f02f3cb88 100644 --- a/platform/x11/godot_x11.cpp +++ b/platform/x11/godot_x11.cpp @@ -45,8 +45,10 @@ int main(int argc, char *argv[]) { getcwd(cwd, PATH_MAX); Error err = Main::setup(argv[0], argc - 1, &argv[1]); - if (err != OK) + if (err != OK) { + free(cwd); return 255; + } if (Main::start()) os.run(); // it is actually the OS that decides how to run |
