aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_unix.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-06-23 20:41:18 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-06-23 20:41:18 +0000
commit7f5371aaf1e9669f29d550b8f1acedcf01845f4a (patch)
treea96a6ac7750dcaccf2516e808628fe0f85610c5e /src/transport/plugin_transport_unix.c
parentb469a43110fd4c08e61530324fc0cec02fa7162b (diff)
downloadgnunet-7f5371aaf1e9669f29d550b8f1acedcf01845f4a.tar.gz
gnunet-7f5371aaf1e9669f29d550b8f1acedcf01845f4a.zip
fix compiler warning about uninitialized variable
Diffstat (limited to 'src/transport/plugin_transport_unix.c')
-rw-r--r--src/transport/plugin_transport_unix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 9ca58ef51..5cf9c5432 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -1106,6 +1106,7 @@ unix_plugin_do_write (struct Plugin *plugin)
1106 struct Session *session; 1106 struct Session *session;
1107 int did_delete; 1107 int did_delete;
1108 1108
1109 session = NULL;
1109 did_delete = GNUNET_NO; 1110 did_delete = GNUNET_NO;
1110 while (NULL != (msgw = plugin->msg_head)) 1111 while (NULL != (msgw = plugin->msg_head))
1111 { 1112 {