mirror of
https://github.com/reactos/wine.git
synced 2025-02-27 08:15:36 +00:00
Fix the INSERT query when inserting integers into a table.
This commit is contained in:
parent
eb0e0df908
commit
99c2b9a994
@ -102,7 +102,10 @@ static UINT INSERT_execute( struct tagMSIVIEW *view, MSIHANDLE record )
|
||||
val = msi_addstringW( iv->db->strings, 0, str, -1, 1 );
|
||||
}
|
||||
else
|
||||
val = MsiRecordGetInteger( record, n++ );
|
||||
{
|
||||
val = MsiRecordGetInteger( record, n );
|
||||
val |= 0x8000;
|
||||
}
|
||||
r = sv->ops->set_int( sv, row, n, val );
|
||||
if( r )
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user