aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-05-18 18:20:09 +0000
committerChristian Grothoff <christian@grothoff.org>2015-05-18 18:20:09 +0000
commited972379c278dc979b0545bb94b0d6106bb6a045 (patch)
tree8578e01b244797dc118e5a62eb5bcdab711d8753 /src/transport
parent5e4b8e5a61f9158f49d821dceaf7c039423d9837 (diff)
downloadgnunet-ed972379c278dc979b0545bb94b0d6106bb6a045.tar.gz
gnunet-ed972379c278dc979b0545bb94b0d6106bb6a045.zip
-avoid theoretical use after free
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/plugin_transport_udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index ce4d30277..4db28b45c 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -1901,7 +1901,7 @@ udp_plugin_send (void *cls,
1901 GNUNET_NO); 1901 GNUNET_NO);
1902 GNUNET_STATISTICS_update (plugin->env->stats, 1902 GNUNET_STATISTICS_update (plugin->env->stats,
1903 "# UDP, unfragmented bytes payload queued total", 1903 "# UDP, unfragmented bytes payload queued total",
1904 udpw->payload_size, 1904 msgbuf_size,
1905 GNUNET_NO); 1905 GNUNET_NO);
1906 } 1906 }
1907 else 1907 else