Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Disconnect Ecore_Wl2_Display instead of destroy
* This patch fixes the crash when the app is terminated

Signed-off-by: Boram Bae <[email protected]>
  • Loading branch information
bbrto21 committed Dec 17, 2020
commit b3f2f5609fe66ca0a8c10b8cfce54077de6f8d0c
2 changes: 1 addition & 1 deletion shell/platform/tizen/tizen_native_window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class TizenWl2Display {

~TizenWl2Display() {
if (wl2_display_) {
ecore_wl2_display_destroy(wl2_display_);
ecore_wl2_display_disconnect(wl2_display_);
wl2_display_ = nullptr;
}
ecore_wl2_shutdown();
Expand Down