diff options
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 785485320f..547432bc2d 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -484,6 +484,12 @@ shell_dispose (GObject *object) g_list_free (priv->loaded_backends); priv->loaded_backends = NULL; + if (priv->preparing_for_line_change != NULL) { + g_object_remove_weak_pointer ( + G_OBJECT (priv->preparing_for_line_change), + &priv->preparing_for_line_change); + } + /* Chain up to parent's dispose() method. */ G_OBJECT_CLASS (parent_class)->dispose (object); } |