Browse Source

[Minor] Remove missing dependencies from runtime checks

tags/1.7.5
Vsevolod Stakhov 6 years ago
parent
commit
103392620e
1 changed files with 11 additions and 1 deletions
  1. 11
    1
      src/libserver/symbols_cache.c

+ 11
- 1
src/libserver/symbols_cache.c View File

@@ -415,7 +415,7 @@ rspamd_symbols_cache_post_init (struct symbols_cache *cache)
struct delayed_cache_dependency *ddep;
struct delayed_cache_condition *dcond;
GList *cur;
guint i, j;
gint i, j;
gint id;

rspamd_symbols_cache_resort (cache);
@@ -506,6 +506,16 @@ rspamd_symbols_cache_post_init (struct symbols_cache *cache)
msg_err_cache ("cannot find dependency on symbol %s", dep->sym);
}
}

/* Reversed loop to make removal safe */
for (j = it->deps->len - 1; j >= 0; j --) {
dep = g_ptr_array_index (it->deps, j);

if (dep->item == NULL) {
/* Remove useless dep */
g_ptr_array_remove_index (it->deps, j);
}
}
}

g_ptr_array_sort_with_data (cache->prefilters, prefilters_cmp, cache);

Loading…
Cancel
Save