mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Use 0 instead of NULL, at least for function casts, since there are
variants of stdio.h that define NULL in such a way that it's "unsafe" to use for function pointer casting.
This commit is contained in:
parent
a9b34991d9
commit
5af18f65f4
@ -294,12 +294,12 @@ static void doall_util_fn(LHASH *lh, int use_arg, LHASH_DOALL_FN_TYPE func,
|
||||
|
||||
void lh_doall(LHASH *lh, LHASH_DOALL_FN_TYPE func)
|
||||
{
|
||||
doall_util_fn(lh, 0, func, (LHASH_DOALL_ARG_FN_TYPE)NULL, NULL);
|
||||
doall_util_fn(lh, 0, func, (LHASH_DOALL_ARG_FN_TYPE)0, NULL);
|
||||
}
|
||||
|
||||
void lh_doall_arg(LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, const void *arg)
|
||||
{
|
||||
doall_util_fn(lh, 1, (LHASH_DOALL_FN_TYPE)NULL, func, arg);
|
||||
doall_util_fn(lh, 1, (LHASH_DOALL_FN_TYPE)0, func, arg);
|
||||
}
|
||||
|
||||
static void expand(LHASH *lh)
|
||||
|
Loading…
Reference in New Issue
Block a user