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
f4e97be7
Commit
f4e97be7
authored
Sep 10, 1999
by
Juergen Schmied
Committed by
Alexandre Julliard
Sep 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent endless loop in except2.
parent
9f1d5a74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
crtdll_main.c
dlls/crtdll/crtdll_main.c
+10
-3
No files found.
dlls/crtdll/crtdll_main.c
View file @
f4e97be7
...
...
@@ -1828,7 +1828,14 @@ LPSTR __cdecl CRTDLL__strtime (LPSTR date)
/*********************************************************************
* _except_handler2 (CRTDLL.78)
*/
INT
__cdecl
CRTDLL__except_handler2
(
void
*
a0
,
void
*
a1
,
void
*
a2
,
void
*
a3
)
{
FIXME
(
"%p %p %p %p stub
\n
"
,
a0
,
a1
,
a2
,
a3
);
return
0
;
INT
__cdecl
CRTDLL__except_handler2
(
PEXCEPTION_RECORD
rec
,
PEXCEPTION_FRAME
frame
,
PCONTEXT
context
,
PEXCEPTION_FRAME
*
dispatcher
)
{
FIXME
(
"exception %lx flags=%lx at %p handler=%p %p %p stub
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
,
rec
->
ExceptionAddress
,
frame
->
Handler
,
context
,
dispatcher
);
return
ExceptionContinueSearch
;
}
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