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
433196d2
Commit
433196d2
authored
Mar 13, 2006
by
Jan Zerebecki
Committed by
Alexandre Julliard
Mar 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x11drv: Prevent out of bound access in DescribePixelFormat.
parent
f2c8a537
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
opengl.c
dlls/x11drv/opengl.c
+3
-3
No files found.
dlls/x11drv/opengl.c
View file @
433196d2
...
...
@@ -369,9 +369,9 @@ int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
return
0
;
}
if
(
nCfgs
<
iPixelFormat
)
{
ERR
(
"unexpected iPixelFormat(%d) > nFormats(%d), returns
NULL
\n
"
,
iPixelFormat
,
nCfgs
);
return
0
;
/* unespected error */
if
(
nCfgs
<
iPixelFormat
||
1
>
iPixelFormat
)
{
WARN
(
"unexpected iPixelFormat(%d): not >=1 and <=nFormats(%d), returning
NULL
\n
"
,
iPixelFormat
,
nCfgs
);
return
0
;
}
ret
=
nCfgs
;
...
...
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