winedbg: stack_backtrace should not return a value.
This commit is contained in:
parent
ecfb6539f6
commit
bc4e1efce3
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue