Commit 510dc1ec authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

outlen should be int * in out_utf8.

parent 563c05e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;