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
81afb288
Commit
81afb288
authored
Mar 02, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Avoid signed-unsigned integer comparisons.
parent
23bf25b0
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
11 deletions
+13
-11
icoformat.c
dlls/windowscodecs/icoformat.c
+1
-1
info.c
dlls/windowscodecs/info.c
+4
-3
jpegformat.c
dlls/windowscodecs/jpegformat.c
+3
-2
main.c
dlls/windowscodecs/main.c
+1
-1
metadatahandler.c
dlls/windowscodecs/metadatahandler.c
+2
-2
palette.c
dlls/windowscodecs/palette.c
+1
-1
scaler.c
dlls/windowscodecs/scaler.c
+1
-1
No files found.
dlls/windowscodecs/icoformat.c
View file @
81afb288
...
...
@@ -293,7 +293,7 @@ static HRESULT ReadIcoDib(IStream *stream, IcoFrameDecode *result)
{
/* If the alpha channel is fully transparent, we should ignore it. */
int
nonzero_alpha
=
0
;
int
i
;
UINT
i
;
for
(
i
=
0
;
i
<
(
result
->
height
*
result
->
width
);
i
++
)
{
...
...
dlls/windowscodecs/info.c
View file @
81afb288
...
...
@@ -539,7 +539,8 @@ static HRESULT WINAPI BitmapDecoderInfo_MatchesPattern(IWICBitmapDecoderInfo *if
WICBitmapPattern
*
patterns
;
UINT
pattern_count
=
0
,
patterns_size
=
0
;
HRESULT
hr
;
int
i
,
pos
;
UINT
i
;
ULONG
pos
;
BYTE
*
data
=
NULL
;
ULONG
datasize
=
0
;
ULONG
bytesread
;
...
...
@@ -1900,7 +1901,7 @@ static HRESULT WINAPI ComponentEnum_Next(IEnumUnknown *iface, ULONG celt,
IUnknown
**
rgelt
,
ULONG
*
pceltFetched
)
{
ComponentEnum
*
This
=
impl_from_IEnumUnknown
(
iface
);
int
num_fetched
=
0
;
ULONG
num_fetched
=
0
;
ComponentEnumItem
*
item
;
HRESULT
hr
=
S_OK
;
...
...
@@ -1929,7 +1930,7 @@ static HRESULT WINAPI ComponentEnum_Next(IEnumUnknown *iface, ULONG celt,
static
HRESULT
WINAPI
ComponentEnum_Skip
(
IEnumUnknown
*
iface
,
ULONG
celt
)
{
ComponentEnum
*
This
=
impl_from_IEnumUnknown
(
iface
);
int
i
;
ULONG
i
;
HRESULT
hr
=
S_OK
;
TRACE
(
"(%p,%u)
\n
"
,
iface
,
celt
);
...
...
dlls/windowscodecs/jpegformat.c
View file @
81afb288
...
...
@@ -998,7 +998,8 @@ static HRESULT WINAPI JpegEncoder_Frame_WritePixels(IWICBitmapFrameEncode *iface
JpegEncoder
*
This
=
impl_from_IWICBitmapFrameEncode
(
iface
);
jmp_buf
jmpbuf
;
BYTE
*
swapped_data
=
NULL
,
*
current_row
;
int
line
,
row_size
;
UINT
line
;
int
row_size
;
TRACE
(
"(%p,%u,%u,%u,%p)
\n
"
,
iface
,
lineCount
,
cbStride
,
cbBufferSize
,
pbPixels
);
EnterCriticalSection
(
&
This
->
lock
);
...
...
@@ -1061,7 +1062,7 @@ static HRESULT WINAPI JpegEncoder_Frame_WritePixels(IWICBitmapFrameEncode *iface
{
if
(
This
->
format
->
swap_rgb
)
{
int
x
;
UINT
x
;
memcpy
(
swapped_data
,
pbPixels
+
(
cbStride
*
line
),
row_size
);
...
...
dlls/windowscodecs/main.c
View file @
81afb288
...
...
@@ -98,7 +98,7 @@ HRESULT copy_pixels(UINT bpp, const BYTE *srcbuffer,
if
(
row_offset
%
8
==
0
)
{
/* everything lines up on a byte boundary */
U
INT
row
;
INT
row
;
const
BYTE
*
src
;
BYTE
*
dst
;
...
...
dlls/windowscodecs/metadatahandler.c
View file @
81afb288
...
...
@@ -60,7 +60,7 @@ static inline MetadataHandler *impl_from_IWICPersistStream(IWICPersistStream *if
static
void
MetadataHandler_FreeItems
(
MetadataHandler
*
This
)
{
int
i
;
DWORD
i
;
for
(
i
=
0
;
i
<
This
->
item_count
;
i
++
)
{
...
...
@@ -555,7 +555,7 @@ static HRESULT WINAPI MetadataHandlerEnum_Next(IWICEnumMetadataItem *iface,
MetadataHandlerEnum
*
This
=
impl_from_IWICEnumMetadataItem
(
iface
);
ULONG
new_index
;
HRESULT
hr
=
S_FALSE
;
int
i
;
ULONG
i
;
TRACE
(
"(%p,%i)
\n
"
,
iface
,
celt
);
...
...
dlls/windowscodecs/palette.c
View file @
81afb288
...
...
@@ -592,7 +592,7 @@ static HRESULT WINAPI PaletteImpl_IsGrayscale(IWICPalette *iface, BOOL *pfIsGray
static
HRESULT
WINAPI
PaletteImpl_HasAlpha
(
IWICPalette
*
iface
,
BOOL
*
pfHasAlpha
)
{
PaletteImpl
*
This
=
impl_from_IWICPalette
(
iface
);
int
i
;
UINT
i
;
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pfHasAlpha
);
...
...
dlls/windowscodecs/scaler.c
View file @
81afb288
...
...
@@ -178,7 +178,7 @@ static void NearestNeighbor_CopyScanline(BitmapScaler *This,
UINT
dst_x
,
UINT
dst_y
,
UINT
dst_width
,
BYTE
**
src_data
,
UINT
src_data_x
,
UINT
src_data_y
,
BYTE
*
pbBuffer
)
{
int
i
;
UINT
i
;
UINT
bytesperpixel
=
This
->
bpp
/
8
;
UINT
src_x
,
src_y
;
...
...
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