Fix Linux crash
[openssl.git] / engines / e_ubsec.c
index ef070b04db93992dbf3bd7bd705ed6b7358a5d3f..eefd37f3ad32c433fa590c430367a1a7f0c4d728 100644 (file)
@@ -265,7 +265,7 @@ static int bind_helper(ENGINE *e)
 static ENGINE *engine_ubsec(void)
 {
     ENGINE *ret = ENGINE_new();
-    if (!ret)
+    if (ret == NULL)
         return NULL;
     if (!bind_helper(ret)) {
         ENGINE_free(ret);