Skip to content
Snippets Groups Projects
Commit 22ff9464 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard
Browse files

winedbg: Fixed regression in gdb handling.

parent 1f302856
No related branches found
No related tags found
No related merge requests found
......@@ -2273,7 +2273,8 @@ int gdb_main(int argc, char* argv[])
}
return -1;
}
if (dbg_active_attach(argc, argv) || dbg_active_launch(argc, argv))
if (dbg_active_attach(argc, argv) == start_ok ||
dbg_active_launch(argc, argv) == start_ok)
return gdb_remote(gdb_flags);
return -1;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment