From: Lutz Jänicke Date: Wed, 8 Jan 2003 08:26:59 +0000 (+0000) Subject: Third argument to shl_load() is "long address", not a pointer. X-Git-Tag: OpenSSL_0_9_7a~97 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3f1cbad2e7eb8f8c53dbabdfa28776a97e2e108f;p=oweals%2Fopenssl.git Third argument to shl_load() is "long address", not a pointer. (Didn't influence functionality, as on HP-UX 32bit the NULL pointer is a 32bit 0-value and thus is identical to the required 0L.) PR: 443 --- diff --git a/crypto/dso/dso_dl.c b/crypto/dso/dso_dl.c index 195717e993..79d2cb4d8c 100644 --- a/crypto/dso/dso_dl.c +++ b/crypto/dso/dso_dl.c @@ -126,7 +126,7 @@ static int dl_load(DSO *dso) DSOerr(DSO_F_DL_LOAD,DSO_R_NO_FILENAME); goto err; } - ptr = shl_load(filename, BIND_IMMEDIATE|DYNAMIC_PATH, NULL); + ptr = shl_load(filename, BIND_IMMEDIATE|DYNAMIC_PATH, 0L); if(ptr == NULL) { DSOerr(DSO_F_DL_LOAD,DSO_R_LOAD_FAILED);