aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/core/forwarder.c
diff options
context:
space:
mode:
authorMauro Sardara <msardara@cisco.com>2021-01-19 17:25:49 +0000
committerGerrit Code Review <gerrit@fd.io>2021-01-19 17:25:49 +0000
commitaa7b78dfca61e4af67e660d0904f9cbe3e98f5dc (patch)
tree06562a3bdf2fc828be07884527ea88d8bc8d11f2 /hicn-light/src/hicn/core/forwarder.c
parent4f7939f8031e00d6808f5ebe3ad92c4109f1e414 (diff)
parent3e88e40270de4a272b17ccea4db35722a30d98a3 (diff)
Merge "[HICN-668] Fix various leaks across codebase"
Diffstat (limited to 'hicn-light/src/hicn/core/forwarder.c')
-rw-r--r--hicn-light/src/hicn/core/forwarder.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/hicn-light/src/hicn/core/forwarder.c b/hicn-light/src/hicn/core/forwarder.c
index f7b0af2c2..94e8cc885 100644
--- a/hicn-light/src/hicn/core/forwarder.c
+++ b/hicn-light/src/hicn/core/forwarder.c
@@ -412,6 +412,14 @@ void forwarder_Receive(Forwarder *forwarder, Message *message) {
forwarder->connectionTable, message_GetIngressConnectionId(message));
if (!conn) {
+ /*
+ * Drop is a static method in messageProcessor which might or might not need
+ * to be called for accounting purposes. This call was initially absent so
+ * the behaviour was kept like this, as this situation is unlikely. We need
+ * to release memory though, as this is not done in Drop anyways.
+ */
+ //messageProcessor_Drop(forwarder->processor, message);
+ message_Release(&message);
return;
}