Commit ccca7ae8 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: Clear error message array at init.

This avoids printing uninitialized bytes if no error message is set
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 6d1a2efb)
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5a98a000
...@@ -2117,7 +2117,7 @@ static int transcode_init(void) ...@@ -2117,7 +2117,7 @@ static int transcode_init(void)
AVCodecContext *codec; AVCodecContext *codec;
OutputStream *ost; OutputStream *ost;
InputStream *ist; InputStream *ist;
char error[1024]; char error[1024] = {0};
int want_sdp = 1; int want_sdp = 1;
for (i = 0; i < nb_filtergraphs; i++) { for (i = 0; i < nb_filtergraphs; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment