Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
libvpx
Commits
201ebe55
Commit
201ebe55
authored
Aug 07, 2014
by
Jim Bankoski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools_common.c: unsigned signed mismatch addressed
Change-Id: I919ca42794f13751ca099868e73892d9df64e45f
parent
9ba12543
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tools_common.c
tools_common.c
+1
-1
No files found.
tools_common.c
View file @
201ebe55
...
@@ -246,7 +246,7 @@ int vpx_img_read(vpx_image_t *img, FILE *file) {
...
@@ -246,7 +246,7 @@ int vpx_img_read(vpx_image_t *img, FILE *file) {
int
y
;
int
y
;
for
(
y
=
0
;
y
<
h
;
++
y
)
{
for
(
y
=
0
;
y
<
h
;
++
y
)
{
if
(
fread
(
buf
,
1
,
w
,
file
)
!=
w
)
if
(
fread
(
buf
,
1
,
w
,
file
)
!=
(
size_t
)
w
)
return
0
;
return
0
;
buf
+=
stride
;
buf
+=
stride
;
}
}
...
...
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