From: Eric Pouech epouech@codeweavers.com
Signed-off-by: Eric Pouech epouech@codeweavers.com --- tools/winedump/pe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c index cb4aa057cc6..4dab6aceb79 100644 --- a/tools/winedump/pe.c +++ b/tools/winedump/pe.c @@ -1219,8 +1219,8 @@ static void dump_cxx_exception_data_v4( unsigned int rva, unsigned int func_rva { UINT cont[3]; const BYTE *p = RVA( catchblock, 1 ); - count = v4_decode_uint( &p ); - for (j = 0; j < count; j++) + UINT count2 = v4_decode_uint( &p ); + for (j = 0; j < count2; j++) { BYTE flags = *p++; printf( " %u:", j );