Eric Pouech : dbghelp: Prevent debug overflow of internal buffer while tracing.
Module: wine Branch: master Commit: 5ccf6a3394b267f6b556dc1002cab27a0ad4d2f6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5ccf6a3394b267f6b556dc1002... Author: Eric Pouech <eric.pouech(a)orange.fr> Date: Wed Apr 30 21:28:59 2008 +0200 dbghelp: Prevent debug overflow of internal buffer while tracing. --- dlls/dbghelp/msc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index a2d0c23..d04ebfb 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -1561,7 +1561,7 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root while (*ptr1) { ptr2 = ptr1 + strlen(ptr1) + 1; - TRACE("\t%s => %s\n", ptr1, ptr2); + TRACE("\t%s => %s\n", ptr1, debugstr_a(ptr2)); ptr1 = ptr2 + strlen(ptr2) + 1; } }
participants (1)
-
Alexandre Julliard