aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2003-08-14 10:33:56 +0000
committerBodo Möller <bodo@openssl.org>2003-08-14 10:33:56 +0000
commit563c05e2dc77221c4aad740c3b89fc21c84652be (patch)
treedc968676522aea378426043fd08c589da7a2d6dc /ssl
parent643ecd2ed6fa6f91d674429fc9fca6e2405946de (diff)
downloadopenssl-563c05e2dc77221c4aad740c3b89fc21c84652be.zip
openssl-563c05e2dc77221c4aad740c3b89fc21c84652be.tar.gz
openssl-563c05e2dc77221c4aad740c3b89fc21c84652be.tar.bz2
fix out-of-bounds check in lock_dbg_cb (was too lose to detect all
invalid cases) PR: 674
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssltest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssltest.c b/ssl/ssltest.c
index a304398..7bb4152 100644
--- a/ssl/ssltest.c
+++ b/ssl/ssltest.c
@@ -303,7 +303,7 @@ static void lock_dbg_cb(int mode, int type, const char *file, int line)
goto err;
}
- if (type < 0 || type > CRYPTO_NUM_LOCKS)
+ if (type < 0 || type >= CRYPTO_NUM_LOCKS)
{
errstr = "type out of bounds";
goto err;