James Hawkins : msi: Pass the correct view to get_row.
Module: wine Branch: master Commit: f1e2041bf451cfdb853821904054aa0fa04c1bc4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f1e2041bf451cfdb8538219040... Author: James Hawkins <jhawkins(a)codeweavers.com> Date: Mon Oct 20 04:19:18 2008 -0500 msi: Pass the correct view to get_row. --- dlls/msi/where.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msi/where.c b/dlls/msi/where.c index 28f115e..65f1be9 100644 --- a/dlls/msi/where.c +++ b/dlls/msi/where.c @@ -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 )
participants (1)
-
Alexandre Julliard