1
0
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:
Manuel Pégourié-Gonnard
2014-10-14 22:34:08 +02:00
committed by Paul Bakker
parent 8e704f0f74
commit 74a1378175
2 changed files with 11 additions and 10 deletions

View File

@ -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;
}