diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-12-28 18:20:29 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-28 18:20:29 -0500 |
commit | cb930c4b5a3f8f3931ba93ef35d4000558ffa79e (patch) | |
tree | b897717a33fc0ba28134be25a9ba52e84b21d122 /src/core/core.cpp | |
parent | ef4c4e239da8e5771f61bf079eae25b28cbd0318 (diff) |
web_browser: Add bounds checking to applet interface
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 373dff2e67..7151727710 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -203,6 +203,11 @@ struct System::Impl { // Close app loader app_loader.reset(); + // Clear all applets + profile_selector.reset(); + software_keyboard.reset(); + web_browser.reset(); + LOG_DEBUG(Core, "Shutdown OK"); } |