dbghelp: Prevent debug overflow of internal buffer while tracing.

This commit is contained in:
Eric Pouech 2008-04-05 09:35:28 +02:00 committed by Alexandre Julliard
parent f46d717818
commit ce7656d218

View file

@ -1575,7 +1575,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;
}
}