mirror of
https://github.com/reactos/wine.git
synced 2025-02-06 12:08:04 +00:00
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…
x
Reference in New Issue
Block a user