Commit e6ce4de3 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Fix an invalid memory access (valgrind).

parent 55b678e1
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment