Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0ba2b569
Commit
0ba2b569
authored
Nov 12, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The debugger "Auto" registry value should be a string.
parent
efc17535
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
except.c
win32/except.c
+8
-2
winedefault.reg
winedefault.reg
+1
-1
No files found.
win32/except.c
View file @
0ba2b569
...
...
@@ -192,7 +192,7 @@ DWORD WINAPI UnhandledExceptionFilter(PEXCEPTION_POINTERS epointers)
&
hDbgConf
))
{
DWORD
type
;
DWORD
count
;
count
=
sizeof
(
format
);
if
(
RegQueryValueExA
(
hDbgConf
,
"Debugger"
,
0
,
&
type
,
format
,
&
count
))
format
[
0
]
=
0
;
...
...
@@ -200,7 +200,13 @@ DWORD WINAPI UnhandledExceptionFilter(PEXCEPTION_POINTERS epointers)
count
=
sizeof
(
bAuto
);
if
(
RegQueryValueExA
(
hDbgConf
,
"Auto"
,
0
,
&
type
,
(
char
*
)
&
bAuto
,
&
count
))
bAuto
=
TRUE
;
else
if
(
type
==
REG_SZ
)
{
char
autostr
[
10
];
count
=
sizeof
(
autostr
);
if
(
!
RegQueryValueExA
(
hDbgConf
,
"Auto"
,
0
,
&
type
,
autostr
,
&
count
))
bAuto
=
atoi
(
autostr
);
}
RegCloseKey
(
hDbgConf
);
}
else
{
/* format[0] = 0; */
...
...
winedefault.reg
View file @
0ba2b569
...
...
@@ -87,7 +87,7 @@
# command line to start a debugger when an exception occurs
"Debugger"="debugger/winedbg %ld %ld"
# to 0 if a message box has to be presented before running the debugger
"Auto"=
dword:00000001
"Auto"=
"1"
#
# This identifies the files for available code pages
...
...
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