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
626691c4
Commit
626691c4
authored
Jun 18, 2000
by
Stephane Lussier
Committed by
Alexandre Julliard
Jun 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed memory access outside of the range for source bits in 24-bit bitmaps.
parent
da157857
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
23 deletions
+23
-23
dib.c
graphics/x11drv/dib.c
+23
-23
No files found.
graphics/x11drv/dib.c
View file @
626691c4
...
...
@@ -2250,29 +2250,28 @@ static void X11DRV_DIB_SetImageBits_32( int lines, const BYTE *srcbits,
/* ==== 32 BGR dib to 24 (888) BGR bitmap ==== */
/* we need to check that source mask matches destination */
{
DWORD
*
srcpixel
;
BYTE
*
bptr
;
BYTE
*
bptr
;
srcpixel
=
(
DWORD
*
)
srcbits
+
left
;
ptr
=
(
DWORD
*
)
srcbits
+
left
;
bptr
=
bmpImage
->
data
;
for
(
h
=
lines
-
1
;
h
>=
0
;
h
--
)
{
for
(
x
=
0
;
x
<
dstwidth
;
x
++
)
{
/* *srcpixel
is a 32bit value */
/* bptr points to first of 3 bytes */
*
bptr
++
=
(
*
srcpixel
>>
16
)
&
0xff
;
*
bptr
++
=
(
*
srcpixel
>>
8
)
&
0xff
;
*
bptr
++
=
(
*
srcpixel
)
&
0xff
;
srcpixel
++
;
/* *ptr
is a 32bit value */
/* bptr points to first of 3 bytes */
*
bptr
++
=
(
*
ptr
>>
16
)
&
0xff
;
*
bptr
++
=
(
*
ptr
>>
8
)
&
0xff
;
*
bptr
++
=
(
*
ptr
)
&
0xff
;
ptr
++
;
}
ptr
=
(
DWORD
*
)
(
srcbits
+=
linebytes
)
+
left
;
}
}
break
;
case
15
:
/* ==== 32 BGR dib to 555 BGR bitmap ==== */
if
(
bmpImage
->
red_mask
==
0x7c00
&&
bmpImage
->
blue_mask
==
0x001f
)
{
if
(
bmpImage
->
red_mask
==
0x7c00
&&
bmpImage
->
blue_mask
==
0x001f
)
{
LPWORD
dstpixel
;
for
(
h
=
lines
-
1
;
h
>=
0
;
h
--
)
{
...
...
@@ -2411,24 +2410,25 @@ static void X11DRV_DIB_GetImageBits_32( int lines, BYTE *dstbits,
/* we need to check that source mask matches destination */
{
DWORD
*
srcpixel
;
BYTE
*
bptr
;
DWORD
srcdata
;
BYTE
*
bptr
;
DWORD
srcdata
;
srcpixel
=
(
DWORD
*
)
dstbits
;
srcpixel
=
(
DWORD
*
)
dstbits
;
bptr
=
bmpImage
->
data
;
for
(
h
=
lines
-
1
;
h
>=
0
;
h
--
)
{
for
(
x
=
0
;
x
<
dstwidth
;
x
++
)
{
/* *srcpixel is a 32bit value */
/* bptr points to first of 3 bytes */
srcdata
=
0
;
srcdata
=
srcdata
<<
8
|
*
bptr
++
;
srcdata
=
srcdata
<<
8
|
*
bptr
++
;
srcdata
=
srcdata
<<
8
|
*
bptr
++
;
*
srcpixel
++
=
srcdata
;
/* *srcpixel is a 32bit value */
/* bptr points to first of 3 bytes */
srcdata
=
0
;
srcdata
=
srcdata
<<
8
|
*
bptr
++
;
srcdata
=
srcdata
<<
8
|
*
bptr
++
;
srcdata
=
srcdata
<<
8
|
*
bptr
++
;
*
srcpixel
++
=
srcdata
;
}
}
srcpixel
=
(
DWORD
*
)
(
dstbits
+=
linebytes
);
}
}
break
;
...
...
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