Skip to content
Snippets Groups Projects
Commit 69ff27f9 authored by Howard Chu's avatar Howard Chu
Browse files

ITS#3150 fix uninit'd return_val

parent a3df8a82
No related branches found
No related tags found
No related merge requests found
......@@ -1072,7 +1072,7 @@ cache_entries(
cache_manager *cm = on->on_bi.bi_private;
query_manager* qm = cm->qm;
int i;
int return_val;
int return_val = 0;
Entry *e;
struct berval crp_uuid;
char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment