Skip to content
Snippets Groups Projects
Commit dea18470 authored by Howard Chu's avatar Howard Chu Committed by Quanah Gibson-Mount
Browse files

ITS#7279 init rc in mdb_idl_insert_keys

parent 43cd073e
No related branches found
No related tags found
No related merge requests found
...@@ -398,7 +398,7 @@ mdb_idl_insert_keys( ...@@ -398,7 +398,7 @@ mdb_idl_insert_keys(
MDB_val key, data; MDB_val key, data;
ID lo, hi, *i; ID lo, hi, *i;
char *err; char *err;
int rc, k; int rc = 0, k;
unsigned int flag = MDB_NODUPDATA; unsigned int flag = MDB_NODUPDATA;
#ifndef MISALIGNED_OK #ifndef MISALIGNED_OK
int kbuf[2]; int kbuf[2];
...@@ -546,7 +546,7 @@ mdb_idl_delete_keys( ...@@ -546,7 +546,7 @@ mdb_idl_delete_keys(
struct berval *keys, struct berval *keys,
ID id ) ID id )
{ {
int rc, k; int rc = 0, k;
MDB_val key, data; MDB_val key, data;
ID lo, hi, tmp, *i; ID lo, hi, tmp, *i;
char *err; char *err;
......
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