소스 검색

[Fix] Do not load errored hyperscan database

tags/2.7
Vsevolod Stakhov 3 년 전
부모
커밋
797a8e37b9
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7
    0
      src/hs_helper.c

+ 7
- 0
src/hs_helper.c 파일 보기

@@ -214,6 +214,13 @@ rspamd_rs_compile_cb (guint ncompiled, GError *err, void *cbd)

ctx = (struct hs_helper_ctx *)worker->ctx;

if (err != NULL) {
/* Failed to compile: log and go out */
msg_err ("cannot compile Hyperscan database: %e", err);

return;
}

if (ncompiled > 0) {
/* Enforce update for other workers */
hack_global_forced = TRUE;

Loading…
취소
저장