diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-04 13:34:46 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-01-04 13:34:46 +0000 |
commit | d315a3368c65a0246b7c863e075013eb0d09bdc9 (patch) | |
tree | d97b2c147aec017f99792f9bd786d9aacfbe31e1 /src/lua | |
parent | 013005767b22a27842487b9f0f62d83456b86470 (diff) | |
download | rspamd-d315a3368c65a0246b7c863e075013eb0d09bdc9.tar.gz rspamd-d315a3368c65a0246b7c863e075013eb0d09bdc9.zip |
Fix another critical issue with memory corruption and ownership
Diffstat (limited to 'src/lua')
-rw-r--r-- | src/lua/lua_regexp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lua/lua_regexp.c b/src/lua/lua_regexp.c index 371f89d45..a612f71d7 100644 --- a/src/lua/lua_regexp.c +++ b/src/lua/lua_regexp.c @@ -711,7 +711,6 @@ lua_regexp_gc (lua_State *L) struct rspamd_lua_regexp *to_del = lua_check_regexp (L); if (to_del) { - msg_warn ("del: %p", to_del->re); if (!IS_DESTROYED (to_del)) { rspamd_regexp_unref (to_del->re); } |