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:
dc22495
)
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:17:00 +0000
(22:17 +0100)
crypto/dso/dso_dlfcn.c
patch
|
blob
|
history
diff --git
a/crypto/dso/dso_dlfcn.c
b/crypto/dso/dso_dlfcn.c
index 5f2254806ca903d71d3f261d042db1345fcfbe4f..4a56aace0e367d952715dad514a036120945938c 100644
(file)
--- a/
crypto/dso/dso_dlfcn.c
+++ b/
crypto/dso/dso_dlfcn.c
@@
-464,7
+464,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;
}