msi: Pass the correct view to get_row.

This commit is contained in:
James Hawkins 2008-10-20 04:19:18 -05:00 committed by Alexandre Julliard
parent d0baa50681
commit f1e2041bf4
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ static UINT WHERE_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
if (r != ERROR_SUCCESS)
return r;
return wv->table->ops->get_row(view, row, rec);
return wv->table->ops->get_row(wv->table, row, rec);
}
static UINT WHERE_set_row( struct tagMSIVIEW *view, UINT row, MSIRECORD *rec, UINT mask )