commit | 563c05e2dc77221c4aad740c3b89fc21c84652be | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Thu Aug 14 10:33:56 2003 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Thu Aug 14 10:33:56 2003 +0000 |
tree | dc968676522aea378426043fd08c589da7a2d6dc | |
parent | 643ecd2ed6fa6f91d674429fc9fca6e2405946de [diff] [blame] |
fix out-of-bounds check in lock_dbg_cb (was too lose to detect all invalid cases) PR: 674
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 @@ goto err; } - if (type < 0 || type > CRYPTO_NUM_LOCKS) + if (type < 0 || type >= CRYPTO_NUM_LOCKS) { errstr = "type out of bounds"; goto err;