Skip to content

Commit

Permalink
use OPENSSL_assert() and not assert()
Browse files Browse the repository at this point in the history
  • Loading branch information
snhenson committed Nov 8, 2009
1 parent c2b78c3 commit 16e7efe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
9 changes: 4 additions & 5 deletions ssl/s3_both.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@

#include <limits.h>
#include <string.h>
#include <assert.h>
#include <stdio.h>
#include "ssl_locl.h"
#include <openssl/buffer.h>
Expand Down Expand Up @@ -173,14 +172,14 @@ int ssl3_send_finished(SSL *s, int a, int b, const char *sender, int slen)
renegotiation checks */
if(s->type == SSL_ST_CONNECT)
{
assert(i <= EVP_MAX_MD_SIZE);
OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
memcpy(s->s3->previous_client_finished,
s->s3->tmp.finish_md, i);
s->s3->previous_client_finished_len=i;
}
else
{
assert(i <= EVP_MAX_MD_SIZE);
OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
memcpy(s->s3->previous_server_finished,
s->s3->tmp.finish_md, i);
s->s3->previous_server_finished_len=i;
Expand Down Expand Up @@ -254,14 +253,14 @@ int ssl3_get_finished(SSL *s, int a, int b)
renegotiation checks */
if(s->type == SSL_ST_ACCEPT)
{
assert(i <= EVP_MAX_MD_SIZE);
OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
memcpy(s->s3->previous_client_finished,
s->s3->tmp.peer_finish_md, i);
s->s3->previous_client_finished_len=i;
}
else
{
assert(i <= EVP_MAX_MD_SIZE);
OPENSSL_assert(i <= EVP_MAX_MD_SIZE);
memcpy(s->s3->previous_server_finished,
s->s3->tmp.peer_finish_md, i);
s->s3->previous_server_finished_len=i;
Expand Down
5 changes: 2 additions & 3 deletions ssl/t1_reneg.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
*
*/
#include <stdio.h>
#include <assert.h>
#include <openssl/objects.h>
#include "ssl_locl.h"

Expand Down Expand Up @@ -225,8 +224,8 @@ int ssl_parse_serverhello_renegotiate_ext(SSL *s, unsigned char *d, int len,
int ilen;

/* Check for logic errors */
assert(!expected_len || s->s3->previous_client_finished_len);
assert(!expected_len || s->s3->previous_server_finished_len);
OPENSSL_assert(!expected_len || s->s3->previous_client_finished_len);
OPENSSL_assert(!expected_len || s->s3->previous_server_finished_len);

/* Parse the length byte */
if(len < 1)
Expand Down

0 comments on commit 16e7efe

Please sign in to comment.