Fix #7249: Endless loop in NLA

This commit is contained in:
Armin Novak 2021-08-26 08:20:20 +02:00 committed by akallabeth
parent c073ca8ac8
commit 06c883a709

View File

@ -1098,7 +1098,7 @@ fail:
{ {
WLog_ERR(TAG, "nla_recv() error: %d", status); WLog_ERR(TAG, "nla_recv() error: %d", status);
Stream_Free(s, TRUE); Stream_Free(s, TRUE);
goto fail; return NULL;
} }
return s; return s;