From: Richard Levitte Date: Tue, 29 Apr 2003 20:45:36 +0000 (+0000) Subject: Some variables were uninitialised... X-Git-Tag: BEN_FIPS_TEST_1~38^2~128 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=54dbdd983702525a5d11c11e18aa1fe07a6aeb43;ds=sidebyside Some variables were uninitialised... --- diff --git a/crypto/objects/obj_dat.c b/crypto/objects/obj_dat.c index adab7a7343..d463c11f54 100644 --- a/crypto/objects/obj_dat.c +++ b/crypto/objects/obj_dat.c @@ -562,7 +562,7 @@ const char *OBJ_bsearch(const char *key, const char *base, int num, int size, const char *OBJ_bsearch_ex(const char *key, const char *base, int num, int size, int (*cmp)(const void *, const void *), int flags) { - int l,h,i,c; + int l,h,i=0,c=0; const char *p = NULL; if (num == 0) return(NULL);