btree/bt_put.c: Fix uninitialized var warning.

This commit is contained in:
Paul Sokolovsky 2016-06-15 02:07:16 +03:00
parent 05aba58c4c
commit e4c57686e6

View file

@ -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;