aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-02-24 08:47:16 +0000
committerChristian Grothoff <christian@grothoff.org>2014-02-24 08:47:16 +0000
commitd69dd49ddddc88f19743360b7b71ce2db05d8ec7 (patch)
tree1274082a32d0c30bd0fc209ed4a14dcbda6c935e /src/fs
parentdd93b7305f0e37ac2f9ce74aaa1d0f4f66752e59 (diff)
downloadgnunet-gtk-d69dd49ddddc88f19743360b7b71ce2db05d8ec7.tar.gz
gnunet-gtk-d69dd49ddddc88f19743360b7b71ce2db05d8ec7.zip
-fix segv: add NULL for stderr, needed due to recent API change
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/gnunet-fs-gtk_event-handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/gnunet-fs-gtk_event-handler.c b/src/fs/gnunet-fs-gtk_event-handler.c
index acde3fef..04b38119 100644
--- a/src/fs/gnunet-fs-gtk_event-handler.c
+++ b/src/fs/gnunet-fs-gtk_event-handler.c
@@ -2133,7 +2133,7 @@ update_search_result (struct SearchResult *sr,
2133 int desc_is_a_dup; 2133 int desc_is_a_dup;
2134 struct GNUNET_GTK_MainWindowContext *mctx = GNUNET_FS_GTK_get_main_context (); 2134 struct GNUNET_GTK_MainWindowContext *mctx = GNUNET_FS_GTK_get_main_context ();
2135 2135
2136 if (sr == NULL) 2136 if (NULL == sr)
2137 { 2137 {
2138 GNUNET_break (0); 2138 GNUNET_break (0);
2139 return; 2139 return;