Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mark Harris
Opus
Commits
32963862
Commit
32963862
authored
Feb 14, 2008
by
Gregory Maxwell
Committed by
Jean-Marc Valin
Feb 15, 2008
Browse files
Fix from speex svn 14504.
parent
5170dbf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/celtdec.c
View file @
32963862
...
...
@@ -104,7 +104,7 @@ static void print_comments(char *comments, int length)
end
=
c
+
length
;
len
=
readint
(
c
,
0
);
c
+=
4
;
if
(
c
+
len
>
end
)
if
(
len
<
0
||
c
+
len
>
end
)
{
fprintf
(
stderr
,
"Invalid/corrupted comments
\n
"
);
return
;
...
...
@@ -128,7 +128,7 @@ static void print_comments(char *comments, int length)
}
len
=
readint
(
c
,
0
);
c
+=
4
;
if
(
c
+
len
>
end
)
if
(
len
<
0
||
c
+
len
>
end
)
{
fprintf
(
stderr
,
"Invalid/corrupted comments
\n
"
);
return
;
...
...
Write
Preview
Supports
Markdown
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