Commit f1e2041b authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Pass the correct view to get_row.

parent d0baa506
......@@ -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 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment