Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Beetham
wine
Commits
98b5f77f
Commit
98b5f77f
authored
25 years ago
by
Ulrich Weigand
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added IsBadFlatReadWritePtr16().
parent
6e013e5c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
if1632/kernel.spec
+1
-1
1 addition, 1 deletion
if1632/kernel.spec
memory/selector.c
+10
-0
10 additions, 0 deletions
memory/selector.c
with
11 additions
and
1 deletion
if1632/kernel.spec
+
1
−
1
View file @
98b5f77f
...
...
@@ -496,7 +496,7 @@ file krnl386.exe
624 pascal SetFastQueue(long long) SetFastQueue16
625 pascal GetFastQueue() GetFastQueue16
626 stub SmashEnvironment
627
stub
IsBadFlatReadWritePtr
627
pascal16 IsBadFlatReadWritePtr(segptr long word)
IsBadFlatReadWritePtr
16
630 register C16ThkSL() C16ThkSL
631 register C16ThkSL01() C16ThkSL01
651 pascal ThunkConnect16(str str word long ptr str word) ThunkConnect16
...
...
This diff is collapsed.
Click to expand it.
memory/selector.c
+
10
−
0
View file @
98b5f77f
...
...
@@ -501,6 +501,16 @@ BOOL16 WINAPI IsBadWritePtr16( SEGPTR ptr, UINT16 size )
}
/***********************************************************************
* IsBadFlatReadWritePtr16 (KERNEL.627)
*/
BOOL16
WINAPI
IsBadFlatReadWritePtr16
(
SEGPTR
ptr
,
DWORD
size
,
BOOL16
bWrite
)
{
return
bWrite
?
IsBadHugeWritePtr16
(
ptr
,
size
)
:
IsBadHugeReadPtr16
(
ptr
,
size
);
}
/***********************************************************************
* MemoryRead (TOOLHELP.78)
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment