aboutsummaryrefslogtreecommitdiff
path: root/src/social
diff options
context:
space:
mode:
authorCarlo von lynX <lynX@time.to.get.psyced.org>2016-07-30 15:19:58 +0000
committerCarlo von lynX <lynX@time.to.get.psyced.org>2016-07-30 15:19:58 +0000
commit811dc4cbbbcd87f4856ebd88fa3b777bb5fe1f89 (patch)
tree08f4248d4c58ad3b21c88c6d1f5a5e5acf5f5c7b /src/social
parent319ff0fa21798013e1fbb6bdd0ce18b1be42fb07 (diff)
downloadgnunet-811dc4cbbbcd87f4856ebd88fa3b777bb5fe1f89.tar.gz
gnunet-811dc4cbbbcd87f4856ebd88fa3b777bb5fe1f89.zip
social: crashing free() removed.. was it redundant?
Diffstat (limited to 'src/social')
-rw-r--r--src/social/social_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/social/social_api.c b/src/social/social_api.c
index 6d77a8e73..f7b536bcf 100644
--- a/src/social/social_api.c
+++ b/src/social/social_api.c
@@ -981,7 +981,7 @@ app_recv_place (void *cls,
981 gconn->app = app; 981 gconn->app = app;
982 gconn->plc_msg = *pmsg; 982 gconn->plc_msg = *pmsg;
983 app->guest_cb (app->cb_cls, gconn, ego, &pmsg->place_pub_key, pmsg->place_state); 983 app->guest_cb (app->cb_cls, gconn, ego, &pmsg->place_pub_key, pmsg->place_state);
984 GNUNET_free (gconn); // FIXME: is this correct here? 984 // GNUNET_free (gconn); // FIXME: is this correct here? apparently not!
985 } 985 }
986} 986}
987 987