[bgpgrep/bgpgrep_vmfunc] Move guard after foundLoop=FALSE

This commit is contained in:
Lorenzo Cogotti 2021-06-08 23:59:57 +02:00
parent 609620c058
commit 49abfa2154
1 changed files with 3 additions and 3 deletions

View File

@ -174,13 +174,13 @@ void BgpgrepF_FindAsLoops(Bgpvm *vm)
Asntree t;
Asn asn;
Sint32 pos = 0;
Boolean foundLoop = FALSE;
const Bgphdr *hdr = BGP_HDR(vm->msg);
if (hdr->type != BGP_UPDATE)
goto nomatch;
Sint32 pos = 0;
Boolean foundLoop = FALSE;
if (Bgp_StartMsgRealAsPath(&it, vm->msg) != OK)
goto nomatch;