Skip to content
Snippets Groups Projects
Commit 8f26e5a1 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry
Browse files

Fix an uninitialized variable.

Surprisingly, the actual initial value of this variable is
 irrelevant, since we always insert 24 bits of data into and then
 read only those bits out.
However, fixing this still removes undefined behavior and removes
 extraneous register dependencies.
parent cfa59561
No related branches found
No related tags found
No related merge requests found
......@@ -473,6 +473,7 @@ static int opus_picture_tag_parse_impl(OpusPictureTag *_pic,const char *_tag,
for(i=0;i<_base64_sz;i++){
opus_uint32 value;
int j;
value=0;
for(j=0;j<4;j++){
unsigned c;
unsigned d;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment