From: Lutz Jänicke Date: Wed, 8 Jan 2003 08:27:50 +0000 (+0000) Subject: Third argument to shl_load() is "long address", not a pointer. X-Git-Tag: OpenSSL_0_9_7a~86^2~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4309c4ad46fb40cd37db5003689b80b115be2c27;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 32a8d41bf7..fd1c758260 100644 --- a/crypto/dso/dso_dl.c +++ b/crypto/dso/dso_dl.c @@ -128,7 +128,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);