diff options
| author | 2018-12-28 18:20:29 -0500 | |
|---|---|---|
| committer | 2018-12-28 18:20:29 -0500 | |
| commit | cb930c4b5a3f8f3931ba93ef35d4000558ffa79e (patch) | |
| tree | b897717a33fc0ba28134be25a9ba52e84b21d122 /src/core/core.cpp | |
| parent | cmake: Add USE_QT_WEB_ENGINE flag and update build system (diff) | |
| download | yuzu-cb930c4b5a3f8f3931ba93ef35d4000558ffa79e.tar.gz yuzu-cb930c4b5a3f8f3931ba93ef35d4000558ffa79e.tar.xz yuzu-cb930c4b5a3f8f3931ba93ef35d4000558ffa79e.zip | |
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 373dff2e6..715172771 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -203,6 +203,11 @@ struct System::Impl { | |||
| 203 | // Close app loader | 203 | // Close app loader |
| 204 | app_loader.reset(); | 204 | app_loader.reset(); |
| 205 | 205 | ||
| 206 | // Clear all applets | ||
| 207 | profile_selector.reset(); | ||
| 208 | software_keyboard.reset(); | ||
| 209 | web_browser.reset(); | ||
| 210 | |||
| 206 | LOG_DEBUG(Core, "Shutdown OK"); | 211 | LOG_DEBUG(Core, "Shutdown OK"); |
| 207 | } | 212 | } |
| 208 | 213 | ||