extb_combi: try limiting the number of allowed nodes per depth to 3

This commit is contained in:
William Pitcock 2015-12-13 10:58:05 -06:00
parent 0a604c72a3
commit 2e548a8a04
1 changed files with 2 additions and 1 deletions

View File

@ -88,6 +88,7 @@ static int eb_combi(const char *data, struct Client *client_p,
{
const char *p, *banend;
int have_result = FALSE;
int allowed_nodes = 3;
size_t datalen;
if (recursion_depth >= 5) {
@ -139,7 +140,7 @@ static int eb_combi(const char *data, struct Client *client_p,
recursion_depth++;
while (TRUE) {
while (--allowed_nodes) {
int invert = FALSE;
char *child_data, child_data_buf[BANLEN];
ExtbanFunc f;