mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 03:51:16 -05:00
ensure comparisions of pointers are for the same type.
This commit is contained in:
parent
f2db7ea9b8
commit
d13792dd52
1 changed files with 1 additions and 1 deletions
|
|
@ -263,7 +263,7 @@ void *CRYPTO_dbg_realloc(void *addr, int num, const char *file, int line)
|
|||
line = line;
|
||||
|
||||
ret=realloc_func(addr,num);
|
||||
if (ret == addr) return(ret);
|
||||
if (ret == (char *)addr) return(ret);
|
||||
|
||||
if (mh_mode & CRYPTO_MEM_CHECK_ENABLE)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue