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
ac8cbe6d
Commit
ac8cbe6d
authored
May 23, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
May 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix: syslevel relay check was too strict.
parent
adb87931
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
relay386.c
relay32/relay386.c
+4
-4
No files found.
relay32/relay386.c
View file @
ac8cbe6d
...
...
@@ -114,7 +114,7 @@ int RELAY_CallFrom32( int ret_addr, ... )
GET_FS
(
fs
);
DPRINTF
(
") ret=%08x fs=%04x
\n
"
,
ret_addr
,
fs
);
SYSLEVEL_CheckNotLevel
(
1
);
SYSLEVEL_CheckNotLevel
(
2
);
if
(
*
relay_addr
==
0xc3
)
/* cdecl */
{
...
...
@@ -204,7 +204,7 @@ int RELAY_CallFrom32( int ret_addr, ... )
DPRINTF
(
"Ret %s() retval=%08x ret=%08x fs=%04x
\n
"
,
buffer
,
ret
,
ret_addr
,
fs
);
SYSLEVEL_CheckNotLevel
(
1
);
SYSLEVEL_CheckNotLevel
(
2
);
return
ret
;
}
...
...
@@ -256,7 +256,7 @@ void WINAPI REGS_FUNC(RELAY_CallFrom32Regs)( CONTEXT *context )
EBP_reg
(
context
),
ESP_reg
(
context
),
DS_reg
(
context
),
ES_reg
(
context
),
GS_reg
(
context
),
EFL_reg
(
context
)
);
SYSLEVEL_CheckNotLevel
(
1
);
SYSLEVEL_CheckNotLevel
(
2
);
/* Now call the real function */
switch
(
nb_args
)
...
...
@@ -300,7 +300,7 @@ void WINAPI REGS_FUNC(RELAY_CallFrom32Regs)( CONTEXT *context )
EBP_reg
(
context
),
ESP_reg
(
context
),
DS_reg
(
context
),
ES_reg
(
context
),
GS_reg
(
context
),
EFL_reg
(
context
)
);
SYSLEVEL_CheckNotLevel
(
1
);
SYSLEVEL_CheckNotLevel
(
2
);
}
#else
/* __i386__ */
...
...
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