free NULL cleanup -- coda
[openssl.git] / demos / cms / cms_comp.c
index e117d37b5e8a9b1614810997a93506ace82944b2..f902d20e6d1a43301c569d1f7bddbfcddaf163ac 100644 (file)
@@ -48,11 +48,8 @@ int main(int argc, char **argv)
         ERR_print_errors_fp(stderr);
     }
 
-    if (cms)
-        CMS_ContentInfo_free(cms);
+    CMS_ContentInfo_free(cms);
     BIO_free(in);
     BIO_free(out);
-
     return ret;
-
 }