winedbg: stack_backtrace should not return a value.

This commit is contained in:
Austin English 2012-12-19 15:05:28 -06:00 committed by Alexandre Julliard
parent ecfb6539f6
commit bc4e1efce3
1 changed files with 5 additions and 1 deletions

View File

@ -447,7 +447,11 @@ void stack_backtrace(DWORD tid)
/* backtrace every thread in every process except the debugger itself,
* invoking via "bt all"
*/
if (tid == -1) return backtrace_all();
if (tid == -1)
{
backtrace_all();
return;
}
if (!dbg_curr_process)
{