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
d75b0ce4
Commit
d75b0ce4
authored
Dec 29, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Make sure we don't return from a stub exception.
parent
edb85230
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
exception.c
dlls/ntdll/exception.c
+1
-1
stub.c
dlls/winecrt0/stub.c
+1
-1
No files found.
dlls/ntdll/exception.c
View file @
d75b0ce4
...
...
@@ -601,5 +601,5 @@ void __wine_spec_unimplemented_stub( const char *module, const char *function )
record
.
NumberParameters
=
2
;
record
.
ExceptionInformation
[
0
]
=
(
ULONG_PTR
)
module
;
record
.
ExceptionInformation
[
1
]
=
(
ULONG_PTR
)
function
;
RtlRaiseException
(
&
record
);
for
(;;)
RtlRaiseException
(
&
record
);
}
dlls/winecrt0/stub.c
View file @
d75b0ce4
...
...
@@ -32,5 +32,5 @@ void DECLSPEC_HIDDEN __wine_spec_unimplemented_stub( const char *module, const c
args
[
0
]
=
(
ULONG_PTR
)
module
;
args
[
1
]
=
(
ULONG_PTR
)
function
;
RaiseException
(
EXCEPTION_WINE_STUB
,
EXCEPTION_NONCONTINUABLE
,
2
,
args
);
for
(;;)
RaiseException
(
EXCEPTION_WINE_STUB
,
EXCEPTION_NONCONTINUABLE
,
2
,
args
);
}
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