summaryrefslogtreecommitdiff
path: root/lang/ruby18-base/patches/patch-be
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby18-base/patches/patch-be')
-rw-r--r--lang/ruby18-base/patches/patch-be14
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/ruby18-base/patches/patch-be b/lang/ruby18-base/patches/patch-be
deleted file mode 100644
index 2a030210d59..00000000000
--- a/lang/ruby18-base/patches/patch-be
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-be,v 1.1 2005/11/02 08:56:40 taca Exp $
-
---- ext/openssl/ossl_cipher.c.orig 2005-02-28 11:45:17.000000000 +0900
-+++ ext/openssl/ossl_cipher.c
-@@ -224,7 +224,8 @@ ossl_cipher_update(VALUE self, VALUE dat
-
- StringValue(data);
- in = RSTRING(data)->ptr;
-- in_len = RSTRING(data)->len;
-+ if ((in_len = RSTRING(data)->len) == 0)
-+ rb_raise(rb_eArgError, "data must not be empty");
- GetCipher(self, ctx);
- str = rb_str_new(0, in_len+EVP_CIPHER_CTX_block_size(ctx));
- if (!EVP_CipherUpdate(ctx, RSTRING(str)->ptr, &out_len, in, in_len))