[totem/gnome-2-32] Bug 623497 — TotemVideoList crashes in row_activated_cb
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [totem/gnome-2-32] Bug 623497 — TotemVideoList crashes in row_activated_cb
- Date: Wed, 4 Aug 2010 15:32:31 +0000 (UTC)
commit 9c820d7a74302842602de1e9c8753349d803f719
Author: Philip Withnall <philip tecnocode co uk>
Date: Tue Jul 6 09:36:42 2010 +0100
Bug 623497 â?? TotemVideoList crashes in row_activated_cb
Ensure we don't use uninitialised memory. Closes: bgo#623497
src/totem-video-list.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/totem-video-list.c b/src/totem-video-list.c
index b5c61e2..f6fc828 100644
--- a/src/totem-video-list.c
+++ b/src/totem-video-list.c
@@ -328,7 +328,7 @@ static void
row_activated_cb (GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *column, gpointer user_data)
{
GtkTreeIter iter;
- gchar *mrl, *display_name;
+ gchar *mrl, *display_name = NULL;
gboolean play_video = TRUE;
TotemVideoList *self = TOTEM_VIDEO_LIST (tree_view);
GtkTreeModel *model = gtk_tree_view_get_model (tree_view);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]