Explorar el Código

[Minor] Move condition

tags/2.6
Vsevolod Stakhov hace 3 años
padre
commit
1bf0fb60a1
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3
    3
      src/libserver/re_cache.c

+ 3
- 3
src/libserver/re_cache.c Ver fichero

@@ -628,10 +628,10 @@ rspamd_re_cache_process_pcre (struct rspamd_re_runtime *rt,
r++;
msg_debug_re_task ("found regexp /%s/, total hits: %d",
rspamd_regexp_get_pattern (re), r);
}

if (max_hits > 0 && r >= max_hits) {
break;
}
if (max_hits > 0 && r >= max_hits) {
break;
}
}


Cargando…
Cancelar
Guardar