diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-22 16:35:41 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-22 16:35:41 +0100 |
commit | 00f687383ae2ea5f3e39840989541e4704887f01 (patch) | |
tree | e7dd5dbcb81c8610fac28b9ddcc9a65c52a7e132 /src | |
parent | 462ae9aba01f539d722b59471be8819a5a9eb3d1 (diff) | |
download | rspamd-00f687383ae2ea5f3e39840989541e4704887f01.tar.gz rspamd-00f687383ae2ea5f3e39840989541e4704887f01.zip |
Plug internet address objects leak
Diffstat (limited to 'src')
-rw-r--r-- | src/lua/lua_util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c index 73099621f..0ea6f4d54 100644 --- a/src/lua/lua_util.c +++ b/src/lua/lua_util.c @@ -595,6 +595,8 @@ lua_util_parse_addr (lua_State *L) lua_rawseti (L, -2, (i + 1)); } + + g_object_unref (ia); } } else { |