This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new 9fb0f250 dlerror can be a long message
9fb0f250 is described below

commit 9fb0f250e25fc05c5e198d159743f5d1b8622e47
Author: Sebb <[email protected]>
AuthorDate: Wed Nov 1 14:42:42 2023 +0000

    dlerror can be a long message
    
    Other locations use 1000
    [skip ci]
---
 src/main/native/org/apache/commons/crypto/OpenSslInfoNative.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/native/org/apache/commons/crypto/OpenSslInfoNative.c 
b/src/main/native/org/apache/commons/crypto/OpenSslInfoNative.c
index 78cd410d..d76550ea 100644
--- a/src/main/native/org/apache/commons/crypto/OpenSslInfoNative.c
+++ b/src/main/native/org/apache/commons/crypto/OpenSslInfoNative.c
@@ -81,7 +81,7 @@ static void get_methods(JNIEnv *env, HMODULE openssl)
 
 static int load_library(JNIEnv *env)
 {
-  char msg[100];
+  char msg[1000];
 #ifdef UNIX
   void *openssl = open_library(env);
 #endif

Reply via email to