From 510dc1ecd00296a17a9b680288290942d82beddf Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 21 Aug 2003 12:32:12 +0000 Subject: [PATCH] outlen should be int * in out_utf8. --- crypto/asn1/a_mbstr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1