msi: Fix an invalid memory access (valgrind).

This commit is contained in:
Hans Leidekker 2015-04-21 11:20:24 +02:00 committed by Alexandre Julliard
parent 55b678e186
commit e6ce4de393
1 changed files with 1 additions and 1 deletions

View File

@ -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;