mirror of
https://github.com/3proxy/3proxy.git
synced 2025-02-23 10:35:40 +08:00
fixed error in previous commit
This commit is contained in:
parent
9356db8de6
commit
3a31da9b3d
@ -1160,7 +1160,7 @@ struct ace * copyacl (struct ace *ac){
|
|||||||
}
|
}
|
||||||
if(ch->next){
|
if(ch->next){
|
||||||
ch->next = itcopy(ch->next, sizeof(struct chain));
|
ch->next = itcopy(ch->next, sizeof(struct chain));
|
||||||
if(!ch->next) goto ERRORCHAINS;
|
if(!ch->next) goto ERRORNEXT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1184,7 +1184,7 @@ ERRORDSTNAMES:
|
|||||||
ac->chains = NULL;
|
ac->chains = NULL;
|
||||||
ERRORCHAINS:
|
ERRORCHAINS:
|
||||||
ac->next = NULL;
|
ac->next = NULL;
|
||||||
ERRORCHAINS:
|
ERRORNEXT:
|
||||||
freeacl(ret);
|
freeacl(ret);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user