MSI: fix the INSERT query

Mike McCormack mike at codeweavers.com
Tue Jun 29 07:16:54 CDT 2004


ChangeLog:
<aric at codeweavers.com>
* fix the INSERT query
-------------- next part --------------
diff -ur dlls/msi.old/insert.c dlls/msi/insert.c
--- dlls/msi.old/insert.c	2004-06-29 07:14:28.000000000 -0500
+++ dlls/msi/insert.c	2004-06-29 07:15:02.000000000 -0500
@@ -103,7 +103,7 @@
         }
         else
             val = MsiRecordGetInteger( record, n++ );
-        r = sv->ops->set_int( sv, row, 1, val );
+        r = sv->ops->set_int( sv, row, n, val );
         if( r )
             break;
     }


More information about the wine-patches mailing list