msi: Fix an invalid memory access (valgrind).
This commit is contained in:
parent
55b678e186
commit
e6ce4de393
|
@ -899,7 +899,7 @@ static UINT save_table( MSIDATABASE *db, const MSITABLE *t, UINT bytes_per_strre
|
|||
}
|
||||
|
||||
rawsize = 0;
|
||||
for (i = 0; i < t->row_count; i++)
|
||||
for (i = 0; i < row_count; i++)
|
||||
{
|
||||
UINT ofs = 0, ofs_mem = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue