Code style: space after 'if'
[openssl.git] / crypto / asn1 / x_x509.c
index 36f6ff4362c7b1af3f282ad6b22fc37b6f37eb5c..08bb4bd33c12fa887f0e1b2819de132cb425b9e2 100644 (file)
@@ -173,7 +173,7 @@ X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
     /* Save start position */
     q = *pp;
 
-    if(!a || *a == NULL) {
+    if (!a || *a == NULL) {
         freeret = 1;
     }
     ret = d2i_X509(a, pp, length);
@@ -188,7 +188,7 @@ X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
         goto err;
     return ret;
  err:
-    if(freeret) {
+    if (freeret) {
         X509_free(ret);
         if (a)
             *a = NULL;