[PATCH 0/1] MR7053: winedump: Fix variable overwrite when dumping exception.
Signed-off-by: Eric Pouech <epouech(a)codeweavers.com> -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7053
From: Eric Pouech <epouech(a)codeweavers.com> Signed-off-by: Eric Pouech <epouech(a)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 ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7053
Hi, It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated. The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details: The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=150471 Your paranoid android. === debian11b (64 bit WoW report) === user32: input.c:5867: Test failed: got pos (49,51)
participants (3)
-
Eric Pouech -
eric pouech (@epo) -
Marvin