aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri Stolnikov <horiz0n@gmx.net>2017-06-11 21:42:05 +0200
committerDimitri Stolnikov <horiz0n@gmx.net>2017-06-11 21:42:05 +0200
commita3b4e5c815511aed75bee281831db941277496d8 (patch)
tree372467f581d75b2ae0c08760711719026a09913d
parent26f93e46874824cd36bd9f05baf3fe3b851aa640 (diff)
rtl_tcp: delete LUT table in destructor
-rw-r--r--lib/rtl_tcp/rtl_tcp_source_c.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rtl_tcp/rtl_tcp_source_c.cc b/lib/rtl_tcp/rtl_tcp_source_c.cc
index d32593b..d49271f 100644
--- a/lib/rtl_tcp/rtl_tcp_source_c.cc
+++ b/lib/rtl_tcp/rtl_tcp_source_c.cc
@@ -305,6 +305,7 @@ rtl_tcp_source_c::rtl_tcp_source_c(const std::string &args) :
rtl_tcp_source_c::~rtl_tcp_source_c()
{
+ delete [] d_LUT;
delete [] d_temp_buff;
if (d_socket != -1) {