mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Avoid false positive in ssl-opt.sh with memcheck
This commit is contained in:
committed by
Paul Bakker
parent
8e704f0f74
commit
74a1378175
@ -3199,7 +3199,7 @@ read_record_header:
|
||||
ssl->next_record_offset = 0;
|
||||
ssl->in_left = 0;
|
||||
|
||||
SSL_DEBUG_MSG( 1, ( "discarding invalid record" ) );
|
||||
SSL_DEBUG_MSG( 1, ( "discarding invalid record (header)" ) );
|
||||
goto read_record_header;
|
||||
}
|
||||
#endif
|
||||
@ -3242,7 +3242,7 @@ read_record_header:
|
||||
}
|
||||
#endif
|
||||
|
||||
SSL_DEBUG_MSG( 1, ( "discarding invalid record" ) );
|
||||
SSL_DEBUG_MSG( 1, ( "discarding invalid record (mac)" ) );
|
||||
goto read_record_header;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user