http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3878c45
)
msi: Compare keys only in compare_record.
author
Hans Leidekker
<hans@codeweavers.com>
Mon, 7 Mar 2011 11:40:06 +0000
(12:40 +0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 7 Mar 2011 12:17:29 +0000
(13:17 +0100)
dlls/msi/table.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/msi/table.c
b/dlls/msi/table.c
index cdbdd58ea44ec846986b3d34e55fad867e2b3f5a..bc05987767cf7614ed32a78519e70df09f831b96 100644
(file)
--- a/
dlls/msi/table.c
+++ b/
dlls/msi/table.c
@@
-1630,6
+1630,8
@@
static int compare_record( MSITABLEVIEW *tv, UINT row, MSIRECORD *rec )
for (i = 0; i < tv->num_cols; i++ )
{
+ if (!(tv->columns[i].type & MSITYPE_KEY)) continue;
+
r = get_table_value_from_record( tv, rec, i + 1, &ivalue );
if (r != ERROR_SUCCESS)
return 1;