Commit af6f3881 authored by Bodo Möller's avatar Bodo Möller
Browse files

Don't "goto err" in client_master_key because no such label exists;

just return -1 as in other error cases.
parent af5eb829
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -567,7 +567,7 @@ static int client_master_key(SSL *s)
			if (RAND_bytes(sess->master_key,i) <= 0)
				{
				ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR);
				goto err;
				return(-1);
				}
			}