diff options
author | bd <bdunahu@operationnull.com> | 2025-04-26 16:38:07 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-26 16:38:07 -0400 |
commit | d449750f789076459de8d47c2960a1279e543c32 (patch) | |
tree | 7e2f5fd8f6f0ba267b7855ee4bb4bd181255c393 /gui/gui.h | |
parent | 6382d595cf947eb54249ff5fea20d8eb073ef3c1 (diff) |
Fix some issues in GUI looking for memory leak
Diffstat (limited to 'gui/gui.h')
-rw-r--r-- | gui/gui.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,12 +99,12 @@ class GUI : public QMainWindow /** * Indicates if the program has been initialized. */ - bool ready; + bool ready = false; /** * The current number of cache levels. */ - int curr_cache_levels; + int curr_cache_levels = 0; /** * The list of storage displays. |