aboutsummaryrefslogtreecommitdiff
path: root/test/recipes
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2024-03-04 13:08:08 +1100
committerMatt Caswell <matt@openssl.org>2024-03-11 11:34:25 +0000
commitd60b37506da65f3aebc5043984b3ec78fd53f75f (patch)
treece52cc280c0364565853767cf3e2af69e5f3ac74 /test/recipes
parent53a8728686663f4fe044cd1a5757f6fcfd777317 (diff)
downloadopenssl-d60b37506da65f3aebc5043984b3ec78fd53f75f.zip
openssl-d60b37506da65f3aebc5043984b3ec78fd53f75f.tar.gz
openssl-d60b37506da65f3aebc5043984b3ec78fd53f75f.tar.bz2
Fix BIO_get_new_index() to return an error when it is exhausted.
Fixes #23655 BIO_get_new_index() returns a range of 129..255. It is set to BIO_TYPE_START (128) initially and is incremented on each call. >= 256 is reserved for the class type flags (BIO_TYPE_DESCRIPTOR) so it should error if it reaches the upper bound. Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23732)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/61-test_bio_meth.t12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/recipes/61-test_bio_meth.t b/test/recipes/61-test_bio_meth.t
new file mode 100644
index 0000000..15207f8
--- /dev/null
+++ b/test/recipes/61-test_bio_meth.t
@@ -0,0 +1,12 @@
+#! /usr/bin/env perl
+# Copyright 2024 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the Apache License 2.0 (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
+use OpenSSL::Test::Simple;
+
+simple_test("test_bio_meth", "bio_meth_test");
+