Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
457e1ed6
Commit
457e1ed6
authored
Sep 29, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a couple of bugs in the debugger startup.
parent
7cbb340a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
24 deletions
+19
-24
except.c
win32/except.c
+19
-24
No files found.
win32/except.c
View file @
457e1ed6
...
...
@@ -217,9 +217,8 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
DWORD
bAuto
=
FALSE
;
PROCESS_INFORMATION
info
;
STARTUPINFOA
startup
;
char
*
cmdline
=
NULL
;
char
*
cmdline
;
char
*
format
=
NULL
;
DWORD
format_size
;
BOOL
ret
=
FALSE
;
static
const
WCHAR
AeDebugW
[]
=
{
'M'
,
'a'
,
'c'
,
'h'
,
'i'
,
'n'
,
'e'
,
'\\'
,
...
...
@@ -245,8 +244,8 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
{
char
buffer
[
64
];
KEY_VALUE_PARTIAL_INFORMATION
*
info
;
DWORD
format_size
=
0
;
format_size
=
0
;
RtlInitUnicodeString
(
&
nameW
,
DebuggerW
);
if
(
NtQueryValueKey
(
hDbgConf
,
&
nameW
,
KeyValuePartialInformation
,
NULL
,
0
,
&
format_size
)
==
STATUS_BUFFER_OVERFLOW
)
...
...
@@ -291,9 +290,18 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
else
bAuto
=
TRUE
;
NtClose
(
hDbgConf
);
}
else
{
/* try a default setup... */
strcpy
(
format
,
"winedbg --debugmsg -all --auto %ld %ld"
);
}
if
(
format
)
{
cmdline
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlen
(
format
)
+
2
*
20
);
sprintf
(
cmdline
,
format
,
GetCurrentProcessId
(),
hEvent
);
HeapFree
(
GetProcessHeap
(),
0
,
format
);
}
else
{
cmdline
=
HeapAlloc
(
GetProcessHeap
(),
0
,
80
);
sprintf
(
cmdline
,
"winedbg --debugmsg -all --auto %ld %d"
,
GetCurrentProcessId
(),
hEvent
);
}
if
(
!
bAuto
)
...
...
@@ -314,32 +322,19 @@ static BOOL start_debugger(PEXCEPTION_POINTERS epointers, HANDLE hEvent)
}
}
if
(
format
)
{
TRACE
(
"Starting debugger (fmt=%s)
\n
"
,
format
);
cmdline
=
HeapAlloc
(
GetProcessHeap
(),
0
,
format_size
+
2
*
20
);
sprintf
(
cmdline
,
format
,
GetCurrentProcessId
(),
hEvent
);
TRACE
(
"Starting debugger %s
\n
"
,
debugstr_a
(
cmdline
));
memset
(
&
startup
,
0
,
sizeof
(
startup
));
startup
.
cb
=
sizeof
(
startup
);
startup
.
dwFlags
=
STARTF_USESHOWWINDOW
;
startup
.
wShowWindow
=
SW_SHOWNORMAL
;
if
(
CreateProcessA
(
NULL
,
cmdline
,
NULL
,
NULL
,
TRUE
,
0
,
NULL
,
NULL
,
&
startup
,
&
info
))
{
/* wait for debugger to come up... */
WaitForSingleObject
(
hEvent
,
INFINITE
);
ret
=
TRUE
;
goto
EXIT
;
}
}
else
{
cmdline
=
NULL
;
}
ERR
(
"Couldn't start debugger (%s) (%ld)
\n
"
ret
=
CreateProcessA
(
NULL
,
cmdline
,
NULL
,
NULL
,
TRUE
,
0
,
NULL
,
NULL
,
&
startup
,
&
info
);
if
(
ret
)
WaitForSingleObject
(
hEvent
,
INFINITE
);
/* wait for debugger to come up... */
else
ERR
(
"Couldn't start debugger (%s) (%ld)
\n
"
"Read the Wine Developers Guide on how to set up winedbg or another debugger
\n
"
,
debugstr_a
(
cmdline
),
GetLastError
());
EXIT:
if
(
cmdline
)
HeapFree
(
GetProcessHeap
(),
0
,
cmdline
);
if
(
format
)
HeapFree
(
GetProcessHeap
(),
0
,
format
);
return
ret
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment