signed/unsigned mismatch (VC++)
Submitted by: Peter 'Luna' Runestig" <peter+openssl-users@runestig.com>
This commit is contained in:
parent
b478e91fda
commit
a3b17baf4e
@ -846,7 +846,7 @@ start:
|
|||||||
if (dest_maxlen > 0)
|
if (dest_maxlen > 0)
|
||||||
{
|
{
|
||||||
n = dest_maxlen - *dest_len; /* available space in 'dest' */
|
n = dest_maxlen - *dest_len; /* available space in 'dest' */
|
||||||
if (rr->length < n)
|
if (rr->length < (unsigned int) n)
|
||||||
n = rr->length; /* available bytes */
|
n = rr->length; /* available bytes */
|
||||||
|
|
||||||
/* now move 'n' bytes: */
|
/* now move 'n' bytes: */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user