Fix a wrong parameter count ERR_add_error_data
authorJanpopan <janpopan@gmx.net>
Sun, 4 May 2014 16:13:43 +0000 (18:13 +0200)
committerMatt Caswell <matt@openssl.org>
Mon, 19 May 2014 21:18:23 +0000 (22:18 +0100)
crypto/dso/dso_dlfcn.c

index c2bc61760bcc0f383564aac2843b31b9daabd33f..18c3dfb5579add0befd1fbf1cfa8f70f7bf3d2f0 100644 (file)
@@ -463,7 +463,7 @@ static int dlfcn_pathbyaddr(void *addr,char *path,int sz)
                return len;
                }
 
-       ERR_add_error_data(4, "dlfcn_pathbyaddr(): ", dlerror());
+       ERR_add_error_data(2, "dlfcn_pathbyaddr(): ", dlerror());
 #endif
        return -1;
        }