projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b7f4c7
)
Fix a wrong parameter count ERR_add_error_data
author
Janpopan
<janpopan@gmx.net>
Sun, 4 May 2014 16:13:43 +0000
(18:13 +0200)
committer
Matt Caswell
<matt@openssl.org>
Mon, 19 May 2014 21:18:23 +0000
(22:18 +0100)
crypto/dso/dso_dlfcn.c
patch
|
blob
|
history
diff --git
a/crypto/dso/dso_dlfcn.c
b/crypto/dso/dso_dlfcn.c
index c2bc61760bcc0f383564aac2843b31b9daabd33f..18c3dfb5579add0befd1fbf1cfa8f70f7bf3d2f0 100644
(file)
--- a/
crypto/dso/dso_dlfcn.c
+++ b/
crypto/dso/dso_dlfcn.c
@@
-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;
}