Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
b418c958
Commit
b418c958
authored
Aug 07, 2014
by
Jim Bankoski
Committed by
Gerrit Code Review
Aug 07, 2014
Browse files
Merge "tools_common.c: unsigned signed mismatch addressed"
parents
bd57508f
201ebe55
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools_common.c
View file @
b418c958
...
...
@@ -246,7 +246,7 @@ int vpx_img_read(vpx_image_t *img, FILE *file) {
int
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
;
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