diff options
author | Richard Levitte <levitte@openssl.org> | 2000-10-22 14:47:01 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-10-22 14:47:01 +0200 |
commit | e9a583aa267a84f1ccfead260aeb111315d88212 (patch) | |
tree | 4964255e170401179d7e601ab8f4df13548896b8 /crypto/dso | |
parent | If the functions get_dh*() are declared static, they should be defined the sa... (diff) | |
download | openssl-e9a583aa267a84f1ccfead260aeb111315d88212.tar.xz openssl-e9a583aa267a84f1ccfead260aeb111315d88212.zip |
Pointer error corrected
Diffstat (limited to 'crypto/dso')
-rw-r--r-- | crypto/dso/dso_dl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dso/dso_dl.c b/crypto/dso/dso_dl.c index 7a6770ef6d..71f44752d0 100644 --- a/crypto/dso/dso_dl.c +++ b/crypto/dso/dso_dl.c @@ -187,7 +187,7 @@ static void *dl_bind_var(DSO *dso, const char *symname) DSOerr(DSO_F_DL_BIND_VAR,DSO_R_NULL_HANDLE); return(NULL); } - if (shl_findsym(ptr, symname, TYPE_UNDEFINED, &sym) < 0) + if (shl_findsym(&ptr, symname, TYPE_UNDEFINED, &sym) < 0) { DSOerr(DSO_F_DL_BIND_VAR,DSO_R_SYM_FAILURE); return(NULL); @@ -216,7 +216,7 @@ static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname) DSOerr(DSO_F_DL_BIND_FUNC,DSO_R_NULL_HANDLE); return(NULL); } - if (shl_findsym(ptr, symname, TYPE_UNDEFINED, &sym) < 0) + if (shl_findsym(&ptr, symname, TYPE_UNDEFINED, &sym) < 0) { DSOerr(DSO_F_DL_BIND_FUNC,DSO_R_SYM_FAILURE); return(NULL); |