btree/bt_put.c: Fix uninitialized var warning.
This commit is contained in:
parent
05aba58c4c
commit
e4c57686e6
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ __bt_put(dbp, key, data, flags)
|
|||
{
|
||||
BTREE *t;
|
||||
DBT tkey, tdata;
|
||||
EPG *e;
|
||||
EPG *e = NULL;
|
||||
PAGE *h;
|
||||
indx_t index, nxtindex;
|
||||
pgno_t pg;
|
||||
|
|
|
|||
Loading…
Reference in a new issue