winedump: Fix incorrect alignment.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2021-10-13 15:17:08 +02:00 committed by Alexandre Julliard
parent 7b5e8ef1d8
commit bad368750e
1 changed files with 1 additions and 1 deletions

View File

@ -1161,7 +1161,7 @@ BOOL codeview_dump_types_from_block(const void* table, unsigned long len)
codeview_dump_one_type(curr_type, type);
curr_type++;
ptr += (type->generic.len + 2 + 3) & ~3;
ptr += type->generic.len + 2;
}
return TRUE;