aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-02-21 12:56:02 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-02-21 12:56:02 +0100
commitb13cf829da5a35e1f6bd8a09250a97b8a212b718 (patch)
treef3cb657bea2d8c584d93502411edf53d21ae47ba /openbsc
parentfdc64f680679accb60f295f0c1712076877bd016 (diff)
[nat/bsc] Fix memory leak of IPA messages...
* The read_msg method is allocating the msgb and we will need to free it once we are done with it.
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/bsc_msc_ip.c1
-rw-r--r--openbsc/src/nat/bsc_nat.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/src/bsc_msc_ip.c b/openbsc/src/bsc_msc_ip.c
index 54ed96b2a..f816b730f 100644
--- a/openbsc/src/bsc_msc_ip.c
+++ b/openbsc/src/bsc_msc_ip.c
@@ -641,6 +641,7 @@ static int ipaccess_a_fd_cb(struct bsc_fd *bfd, unsigned int what)
else if (hh->proto == IPAC_PROTO_SCCP)
sccp_system_incoming(msg);
+ talloc_free(msg);
return 0;
}
diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c
index 3f0a387a0..0ad8be986 100644
--- a/openbsc/src/nat/bsc_nat.c
+++ b/openbsc/src/nat/bsc_nat.c
@@ -148,6 +148,7 @@ static int ipaccess_msc_cb(struct bsc_fd *bfd, unsigned int what)
else if (hh->proto == IPAC_PROTO_SCCP)
forward_sccp_to_bts(msg);
+ talloc_free(msg);
return 0;
}
@@ -203,6 +204,7 @@ static int ipaccess_bsc_cb(struct bsc_fd *bfd, unsigned int what)
/* FIXME: Currently no PONG is sent to the BSC */
/* FIXME: Currently no ID ACK is sent to the BSC */
forward_sccp_to_msc(msg);
+ talloc_free(msg);
return 0;
}