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

check mval for NULL too

parent c42ab440
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2052,7 +2052,7 @@ X509_NAME *parse_name(char *subject, long chtype, int multirdn)
	X509_NAME *n = NULL;
	int nid;

	if (!buf || !ne_types || !ne_values)
	if (!buf || !ne_types || !ne_values || !mval)
		{
		BIO_printf(bio_err, "malloc error\n");
		goto error;