Commit 4b192ffd authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

ffmpeg: Initialize two stack variables.

Avoids reading from uninitialized memory, regression since af1761f7
parent 66963d4b
......@@ -1434,7 +1434,7 @@ static int reap_filters(int flush)
filter = ost->filter->filter;
if (!ost->initialized) {
char error[1024];
char error[1024] = "";
ret = init_output_stream(ost, error, sizeof(error));
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
......@@ -1847,7 +1847,7 @@ static void flush_encoders(void)
// Maybe we should just let encoding fail instead.
if (!ost->initialized) {
FilterGraph *fg = ost->filter->graph;
char error[1024];
char error[1024] = "";
av_log(NULL, AV_LOG_WARNING,
"Finishing stream %d:%d without any data written to it.\n",
......
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