From: Dr. Stephen Henson Date: Thu, 21 Aug 2003 12:31:17 +0000 (+0000) Subject: outlen should be int * in out_utf8. X-Git-Tag: OpenSSL_0_9_7c~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3b07c32fe75b75c8221a8753bda6ef865b299158;p=oweals%2Fopenssl.git outlen should be int * in out_utf8. --- diff --git a/crypto/asn1/a_mbstr.c b/crypto/asn1/a_mbstr.c index 5d981c6553..e8a26af521 100644 --- a/crypto/asn1/a_mbstr.c +++ b/crypto/asn1/a_mbstr.c @@ -296,7 +296,7 @@ static int in_utf8(unsigned long value, void *arg) static int out_utf8(unsigned long value, void *arg) { - long *outlen; + int *outlen; outlen = arg; *outlen += UTF8_putc(NULL, -1, value); return 1;