Commit bc4e1efc authored by Austin English's avatar Austin English Committed by Alexandre Julliard

winedbg: stack_backtrace should not return a value.

parent ecfb6539
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment