Silence bogus compiler warning.

This commit is contained in:
Robert Haas 2011-11-04 10:40:52 -04:00
parent c9f48b572c
commit b76c61f1e8

View File

@ -44,7 +44,7 @@ transfer_all_new_dbs(DbInfoArr *old_db_arr,
old_dbnum < old_db_arr->ndbs;
old_dbnum++, new_dbnum++)
{
DbInfo *old_db = &old_db_arr->dbs[old_dbnum], *new_db;
DbInfo *old_db = &old_db_arr->dbs[old_dbnum], *new_db = NULL;
FileNameMap *mappings;
int n_maps;
pageCnvCtx *pageConverter = NULL;