diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-22 16:38:07 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-22 19:20:05 +0900 |
| commit | 04368be9a03a5238f5772141d439b877e7fc8eae (patch) | |
| tree | fde4a731548b5dd21490f2e11655cbd164bf6cff /src/main.cpp | |
| parent | 6a86ef7adca7ad984696f053f34361ce3716bdda (diff) | |
| download | kstreamripper-04368be9.tar.gz kstreamripper-04368be9.zip | |
Properly deallocate memory on exit
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d99a435c55f3229a6bb577e6be4c0af9e06995f1)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/src/main.cpp b/src/main.cpp index e249247..ac2397e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -47,20 +47,7 @@ int main( int argc, char *argv[] ) mainWidget->resize( 700, 600 ); - return app.exec(); + int res = app.exec(); + delete mainWidget; + return res; } - - - - - - - - - - - - - - - |
