Fix inf loop
This commit is contained in:
parent
22524376a1
commit
ffae017694
|
|
@ -453,6 +453,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
do {
|
||||
if (s->type != PENDING_SERVER && s->call != NULL) {
|
||||
s = destroy_call(&active_call, s);
|
||||
} else {
|
||||
s = s->next;
|
||||
}
|
||||
} while (s != active_call);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue