aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-08-12 14:49:58 +0000
committerBart Polot <bart@net.in.tum.de>2013-08-12 14:49:58 +0000
commit860c615d8efd0ca2cf8ba24a527b94ae6fc96918 (patch)
treef403d102127a2dd2d8292e748d0fd34f8482c732
parentd88cf34549d5aa0d8367ace1d5482289d4925525 (diff)
downloadgnunet-860c615d8efd0ca2cf8ba24a527b94ae6fc96918.tar.gz
gnunet-860c615d8efd0ca2cf8ba24a527b94ae6fc96918.zip
- use after free
-rw-r--r--src/mesh/gnunet-service-mesh-enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh-enc.c b/src/mesh/gnunet-service-mesh-enc.c
index ff43af0f0..ccee1c40a 100644
--- a/src/mesh/gnunet-service-mesh-enc.c
+++ b/src/mesh/gnunet-service-mesh-enc.c
@@ -4827,7 +4827,7 @@ handle_mesh_connection_create (void *cls,
4827 } 4827 }
4828 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Own position: %u\n", own_pos); 4828 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, " Own position: %u\n", own_pos);
4829 path_add_to_peers (path, GNUNET_NO); 4829 path_add_to_peers (path, GNUNET_NO);
4830 c->path = path; 4830 c->path = path_duplicate (path);
4831 c->own_pos = own_pos; 4831 c->own_pos = own_pos;
4832 4832
4833 /* Is it a connection to us? */ 4833 /* Is it a connection to us? */