Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
284b4326
Commit
284b4326
authored
Nov 08, 2017
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/fitsenc: validate input pixel format
Fixes CID #1416961 and #1416962
parent
237ccd8a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
fitsenc.c
libavformat/fitsenc.c
+5
-1
No files found.
libavformat/fitsenc.c
View file @
284b4326
...
...
@@ -106,6 +106,8 @@ static int write_image_header(AVFormatContext *s)
}
bzero
=
32768
;
break
;
default:
return
AVERROR
(
EINVAL
);
}
if
(
fitsctx
->
first_image
)
{
...
...
@@ -166,7 +168,9 @@ static int write_image_header(AVFormatContext *s)
static
int
fits_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
write_image_header
(
s
);
int
ret
=
write_image_header
(
s
);
if
(
ret
<
0
)
return
ret
;
avio_write
(
s
->
pb
,
pkt
->
data
,
pkt
->
size
);
return
0
;
}
...
...
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