CLEANUP: ssl: remove useless check on p in openssl_version_parser()

Remove a  useless check on a pointer which reports a NULL dereference on
coverity.

Fixes issue #1358.
diff --git a/src/ssl_utils.c b/src/ssl_utils.c
index 20dcdb9..5782121 100644
--- a/src/ssl_utils.c
+++ b/src/ssl_utils.c
@@ -373,11 +373,9 @@
 
 		if (!strncmp(p, "beta", 4)) {
 			p += 4;
-			if (p) {
-				status = strtol(p, &end, 10);
-				if (status > 14)
-					goto error;
-			}
+			status = strtol(p, &end, 10);
+			if (status > 14)
+				goto error;
 		}
 	} else {
 		/* that's a patch release */