Skip to content
Snippets Groups Projects
Commit ffae0176 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix inf loop

parent 22524376
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment