Remove redundant PSK length check.

If psk_len were 0, it would already have been an error earlier. The PSK cipher
suites don't lose the other_secret || psk construction if the PSK happens to be
empty.

Change-Id: I1917236720d0862658562bc8f014cb827ee9aed5
Reviewed-on: https://boringssl-review.googlesource.com/2233
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c
index 54dbbd7..adbc683 100644
--- a/ssl/s3_clnt.c
+++ b/ssl/s3_clnt.c
@@ -2184,7 +2184,7 @@
 
 		/* For a PSK cipher suite, other_secret is combined
 		 * with the pre-shared key. */
-		if ((alg_a & SSL_aPSK) && psk_len != 0)
+		if (alg_a & SSL_aPSK)
 			{
 			CBB cbb, child;
 			uint8_t *new_pms;