summaryrefslogtreecommitdiff
path: root/src/lib/irm.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-03-03 15:06:09 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-03-03 15:06:09 +0100
commitef2a4f128fa0250db5457069e397bf328c6da25e (patch)
treebca214380c41311fe1d7e9d05f77f42c4e1b3161 /src/lib/irm.c
parent52a5113760802e16b07d9d954237871d52cff70a (diff)
downloadouroboros-ef2a4f128fa0250db5457069e397bf328c6da25e.tar.gz
ouroboros-ef2a4f128fa0250db5457069e397bf328c6da25e.zip
lib, irmd: Fix memleaks
Fixes a couple of memleaks found while executing with valgrind.
Diffstat (limited to 'src/lib/irm.c')
-rw-r--r--src/lib/irm.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/irm.c b/src/lib/irm.c
index 97000029..8756d7fc 100644
--- a/src/lib/irm.c
+++ b/src/lib/irm.c
@@ -26,6 +26,7 @@
#include <ouroboros/common.h>
#include <ouroboros/logs.h>
#include <ouroboros/sockets.h>
+#include <stdlib.h>
static int send_irm_msg(struct irm_msg * msg)
{
@@ -47,8 +48,11 @@ static int send_irm_msg(struct irm_msg * msg)
return -1;
}
- close(sockfd);
- return 0;
+ free(buf->data);
+ free(buf);
+
+ close(sockfd);
+ return 0;
}
int irm_create_ipcp(rina_name_t name,