diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-06-19 00:32:49 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-06-19 00:32:49 -0400 |
commit | ed50772b4154fb7fa3d48be3c37785199ed21276 (patch) | |
tree | 3e961f789646981049fe1604d9b628fa285c1a23 /gtk/gtksearchenginesimple.c | |
parent | d12c7186b6c6db74b507c95b6af11b7d16e99f8a (diff) | |
download | gtk+-ed50772b4154fb7fa3d48be3c37785199ed21276.tar.gz |
GtkSearchEngine: Avoid a crash
Add a destroy notify for the data of the callback, so we don't
end up leaving a dangling pointer behind for a short while if
the native engine is finalized before the simple one. This
was showing up as crash when typing and backspacing in the
search entry of the file chooser.
Diffstat (limited to 'gtk/gtksearchenginesimple.c')
-rw-r--r-- | gtk/gtksearchenginesimple.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gtk/gtksearchenginesimple.c b/gtk/gtksearchenginesimple.c index b405aef976..00543eaa93 100644 --- a/gtk/gtksearchenginesimple.c +++ b/gtk/gtksearchenginesimple.c @@ -57,6 +57,7 @@ struct _GtkSearchEngineSimplePrivate GtkSearchEngineSimpleIsIndexed is_indexed_callback; gpointer is_indexed_data; + GDestroyNotify is_indexed_data_destroy; }; @@ -83,6 +84,13 @@ gtk_search_engine_simple_dispose (GObject *object) priv->active_search = NULL; } + if (priv->is_indexed_data_destroy) + priv->is_indexed_data_destroy (priv->is_indexed_data); + + priv->is_indexed_callback = NULL; + priv->is_indexed_data = NULL; + priv->is_indexed_data_destroy = NULL; + G_OBJECT_CLASS (_gtk_search_engine_simple_parent_class)->dispose (object); } @@ -365,8 +373,13 @@ _gtk_search_engine_simple_new (void) void _gtk_search_engine_simple_set_indexed_cb (GtkSearchEngineSimple *engine, GtkSearchEngineSimpleIsIndexed callback, - gpointer data) + gpointer data, + GDestroyNotify destroy) { + if (engine->priv->is_indexed_data_destroy) + engine->priv->is_indexed_data_destroy (engine->priv->is_indexed_data); + engine->priv->is_indexed_callback = callback; engine->priv->is_indexed_data = data; + engine->priv->is_indexed_data_destroy = destroy; } |