From 54dbdd983702525a5d11c11e18aa1fe07a6aeb43 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 29 Apr 2003 20:45:36 +0000 Subject: [PATCH] Some variables were uninitialised... --- crypto/objects/obj_dat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.25.1