Allow 32-bit perl to generate x86_64 assembler.
[oweals/openssl.git] / crypto / objects / obj_err.c
index 0682979b38159a3f58ceb0c6fef71cc56433c970..12b48850c6bc5f674b68904b404fdf1504af5cc6 100644 (file)
@@ -91,15 +91,12 @@ static ERR_STRING_DATA OBJ_str_reasons[]=
 
 void ERR_load_OBJ_strings(void)
        {
-       static int init=1;
+#ifndef OPENSSL_NO_ERR
 
-       if (init)
+       if (ERR_func_error_string(OBJ_str_functs[0].error) == NULL)
                {
-               init=0;
-#ifndef OPENSSL_NO_ERR
                ERR_load_strings(0,OBJ_str_functs);
                ERR_load_strings(0,OBJ_str_reasons);
-#endif
-
                }
+#endif
        }