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

Print out zero length string properly.

parent ba30bad5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -506,7 +506,8 @@ static int asn1_print_obstring_ctx(BIO *out, ASN1_STRING *str, int indent,
		}
	else if (BIO_puts(out, "\n") <= 0)
		return 0;
	if (BIO_dump_indent(out, (char *)str->data, str->length,
	if ((str->length > 0)
		&& BIO_dump_indent(out, (char *)str->data, str->length,
				indent + 2) <= 0)
		return 0;
	return 1;