aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/telnet_interface.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-06-22 01:36:25 +0200
committerHarald Welte <laforge@gnumonks.org>2009-06-22 01:36:25 +0200
commita4ffea95057c98e532c897bde6cc06a575dec2c3 (patch)
treee6c02cba13b93a542174f18a408075d6cdaa18ee /openbsc/src/telnet_interface.c
parente441d9c36174037f50245a0dc47c4ec41b3b5421 (diff)
fix various talloc / dynamic bts/trx related bugs
Prior to this patch, nanobts was not able to operate after recent changes
Diffstat (limited to 'openbsc/src/telnet_interface.c')
-rw-r--r--openbsc/src/telnet_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/telnet_interface.c b/openbsc/src/telnet_interface.c
index 8b9fd7983..5cc6ea0af 100644
--- a/openbsc/src/telnet_interface.c
+++ b/openbsc/src/telnet_interface.c
@@ -132,7 +132,7 @@ int telnet_close_client(struct bsc_fd *fd) {
close(fd->fd);
bsc_unregister_fd(fd);
llist_del(&conn->entry);
- free(conn);
+ talloc_free(conn);
return 0;
}