diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-23 19:07:56 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-23 19:07:56 +0400 |
commit | 331f6807e9ef813755f8ec197cc24915c458a684 (patch) | |
tree | cea02bcfeb75d0243fb599ecfc982c41e625e1f3 /src/worker.c | |
parent | 9bee3171888d00c741e58a7c3532bd04ed7b48c1 (diff) | |
download | rspamd-331f6807e9ef813755f8ec197cc24915c458a684.tar.gz rspamd-331f6807e9ef813755f8ec197cc24915c458a684.zip |
* Move images library to core rspamd
* Add lua api to access images properties
Diffstat (limited to 'src/worker.c')
-rw-r--r-- | src/worker.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/worker.c b/src/worker.c index d249843b8..cbd234492 100644 --- a/src/worker.c +++ b/src/worker.c @@ -257,6 +257,9 @@ free_task (struct worker_task *task, gboolean is_soft) if (task->urls) { g_list_free (task->urls); } + if (task->images) { + g_list_free (task->images); + } if (task->messages) { g_list_free (task->messages); } |