diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:13:10 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 22:13:10 +0000 |
commit | 25f8e6014ae3570d986f4417aa7a74a4736d8ffd (patch) | |
tree | 54c5064cfb33b75accbfe9f3d540d57eb90f43ff /libavfilter | |
parent | 6e365c5720c6b6e17d40473f8e5c0a219de8a1b3 (diff) | |
download | ffmpeg-25f8e6014ae3570d986f4417aa7a74a4736d8ffd.tar.gz |
Fix some potential segfaults.
Commited in SoC by Bobby Bingham on 2007-07-30 15:53:33
Originally committed as revision 12088 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index a508e7387d..0dd0a32b5f 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -184,7 +184,10 @@ struct AVFilterContext char *name; + unsigned input_count; AVFilterLink **inputs; + + unsigned output_count; AVFilterLink **outputs; void *priv; |