mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-04 21:24:43 +02:00
Sniffer: Fix infinte recursion caused by an OOO appData packet
This commit is contained in:
@@ -6496,8 +6496,8 @@ doPart:
|
||||
return WOLFSSL_FATAL_ERROR;
|
||||
}
|
||||
|
||||
/* do we have another msg in record ? */
|
||||
if (sslFrame < recordEnd) {
|
||||
/* do we have another msg in record ? did we decode the current msg ? */
|
||||
if (sslFrame < recordEnd && decoded) {
|
||||
Trace(ANOTHER_MSG_STR);
|
||||
goto doPart;
|
||||
}
|
||||
|
Reference in New Issue
Block a user