提交 54dbdd98 编写于 作者: R Richard Levitte

Some variables were uninitialised...

上级 9d6c32d6
...@@ -562,7 +562,7 @@ const char *OBJ_bsearch(const char *key, const char *base, int num, int size, ...@@ -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, const char *OBJ_bsearch_ex(const char *key, const char *base, int num,
int size, int (*cmp)(const void *, const void *), int flags) 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; const char *p = NULL;
if (num == 0) return(NULL); if (num == 0) return(NULL);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册