Browse Source

[Minor] Do not start new symbols when task is being destroyed/cleaned

tags/1.8.3
Vsevolod Stakhov 5 years ago
parent
commit
5f7111cfe6
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/libserver/rspamd_symcache.c

+ 8
- 0
src/libserver/rspamd_symcache.c View File

return TRUE; return TRUE;
} }


if (rspamd_session_blocked (task->s)) {
/*
* We cannot add new events as session is either destroyed or
* being cleaned up.
*/
return TRUE;
}

g_assert (!item->is_virtual); g_assert (!item->is_virtual);
g_assert (item->specific.normal.func != NULL); g_assert (item->specific.normal.func != NULL);
if (CHECK_START_BIT (checkpoint, dyn_item)) { if (CHECK_START_BIT (checkpoint, dyn_item)) {

Loading…
Cancel
Save