From 5014d7e9fce3a60f090040dd0a651f9411a19657 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Wed, 16 Sep 2020 14:44:49 -0300 Subject: [PATCH] appDisplay: Disconnect from parental controls on destroy BaseAppView not disconnecting from the 'app-filter-changed' signal means parental controls may trigger callbacks on a destroyed grid, which tries to access destroyed icons, which spams the journal with stack traces. Disconnect from parental controls when BaseAppView is destroyed. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1441 --- js/ui/appDisplay.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 68fdbdd0e..f9e6a9b7d 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -188,9 +188,10 @@ var BaseAppView = GObject.registerClass({ // Filter the apps through the user’s parental controls. this._parentalControlsManager = ParentalControlsManager.getDefault(); - this._parentalControlsManager.connect('app-filter-changed', () => { - this._redisplay(); - }); + this._appFilterChangedId = + this._parentalControlsManager.connect('app-filter-changed', () => { + this._redisplay(); + }); // Drag n' Drop this._lastOvershoot = -1; @@ -206,6 +207,10 @@ var BaseAppView = GObject.registerClass({ } _onDestroy() { + if (this._appFilterChangedId > 0) { + this._parentalControlsManager.disconnect(this._appFilterChangedId); + this._appFilterChangedId = 0; + } this._removeDelayedMove(); this._disconnectDnD(); }