Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
4fee11ab
Commit
4fee11ab
authored
Jul 31, 2015
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
png: Be more informative regarding signature errors
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
14e55802
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
pngdec.c
libavcodec/pngdec.c
+17
-3
No files found.
libavcodec/pngdec.c
View file @
4fee11ab
...
...
@@ -18,6 +18,8 @@
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/avstring.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "bytestream.h"
...
...
@@ -414,9 +416,21 @@ static int decode_frame(AVCodecContext *avctx,
int
ret
;
/* check signature */
if
(
buf_size
<
8
||
(
memcmp
(
buf
,
ff_pngsig
,
8
)
!=
0
&&
memcmp
(
buf
,
ff_mngsig
,
8
)
!=
0
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Invalid PNG signature (%d).
\n
"
,
buf_size
);
if
(
buf_size
<
8
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Not enough data %d
\n
"
,
buf_size
);
return
AVERROR_INVALIDDATA
;
}
if
(
memcmp
(
buf
,
ff_pngsig
,
8
)
!=
0
&&
memcmp
(
buf
,
ff_mngsig
,
8
)
!=
0
)
{
char
signature
[
5
*
8
+
1
]
=
{
0
};
int
i
;
for
(
i
=
0
;
i
<
8
;
i
++
)
{
av_strlcatf
(
signature
+
i
*
5
,
sizeof
(
signature
)
-
i
*
5
,
" 0x%02x"
,
buf
[
i
]);
}
av_log
(
avctx
,
AV_LOG_ERROR
,
"Invalid PNG signature %s
\n
"
,
signature
);
return
AVERROR_INVALIDDATA
;
}
...
...
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