Commit fb7fbf28 authored by Jonas Maebe's avatar Jonas Maebe Committed by Kurt Roeckx
Browse files

UI_construct_prompt: check for NULL when allocating prompt

parent ba494ee5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -431,6 +431,8 @@ char *UI_construct_prompt(UI *ui, const char *object_desc,
		len += sizeof(prompt3) - 1;

		prompt = (char *)OPENSSL_malloc(len + 1);
		if (prompt == NULL)
			return NULL;
		BUF_strlcpy(prompt, prompt1, len + 1);
		BUF_strlcat(prompt, object_desc, len + 1);
		if (object_name)