summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/gtk/rtp_stream_dlg.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/gtk/rtp_stream_dlg.c b/ui/gtk/rtp_stream_dlg.c
index 6485eb6ce2..6c11fe4ed7 100644
--- a/ui/gtk/rtp_stream_dlg.c
+++ b/ui/gtk/rtp_stream_dlg.c
@@ -1076,7 +1076,12 @@ rtpstream_dlg_create (void)
/* list: pointer to list of rtp_stream_info_t* */
void rtpstream_dlg_update(GList *list_lcl)
{
+ GtkTreeSelection *selection;
if (rtp_stream_dlg != NULL) {
+ /* Disable selection to avoid rtpstream_view_selection_func from
+ * triggering and thereby accessing invalid memory. */
+ selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
+ gtk_tree_selection_set_mode(selection, GTK_SELECTION_NONE);
gtk_list_store_clear(list_store);
streams_nb = 0;
@@ -1087,6 +1092,7 @@ void rtpstream_dlg_update(GList *list_lcl)
list_lcl = g_list_next(list_lcl);
}
+ gtk_tree_selection_set_mode(selection, GTK_SELECTION_MULTIPLE);
rtpstream_on_unselect(NULL, NULL);
}