Commit 17ea6ab6 authored by Deb Mukherjee's avatar Deb Mukherjee
Browse files

Initialization to prevent asan failure on google3

Reinstates an assignment to prevent an asan failurere on google3.
Not sure why the failure happens. This was removed in a recent patch
https://gerrit.chromium.org/gerrit/#/c/71068/.

Change-Id: Ifd9ccffd4c2164f4de38b21821ffb28bd779b0f3
Showing with 1 addition and 1 deletion
...@@ -538,7 +538,7 @@ int main_loop(int argc, const char **argv_) { ...@@ -538,7 +538,7 @@ int main_loop(int argc, const char **argv_) {
struct VpxDecInputContext input = {NULL, NULL}; struct VpxDecInputContext input = {NULL, NULL};
struct VpxInputContext vpx_input_ctx; struct VpxInputContext vpx_input_ctx;
#if CONFIG_WEBM_IO #if CONFIG_WEBM_IO
struct WebmInputContext webm_ctx; struct WebmInputContext webm_ctx = {0};
input.webm_ctx = &webm_ctx; input.webm_ctx = &webm_ctx;
#endif #endif
input.vpx_input_ctx = &vpx_input_ctx; input.vpx_input_ctx = &vpx_input_ctx;
......
Supports Markdown
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