GNOME Bugzilla – Bug 749909
matroska: overwritten value assignment
Last modified: 2015-05-27 15:58:38 UTC
Created attachment 304018 [details] [review] patch removing first assignment The value curpos in gst/matroska/matroska-read-common.c:2419 is set to gst_ebml_read_get_pos (ebml) and then immediately after set again to the same value. The first assignment being overwritten with the same value. guint64 curpos; curpos = gst_ebml_read_get_pos (ebml); /* Make sure we don't parse a tags element twice and * post it's tags twice */ curpos = gst_ebml_read_get_pos (ebml); This looks like a simple dead assignment problem. But want to confirm here in bugzilla since this code has been in gst-plugins-good since 2011, making me wonder if there is something hidden I am missing.
Review of attachment 304018 [details] [review]: Either nobody has any complaints or people are too busy for reviews. Won't bother peeps with this and will remove it from the Open queue. Merged: commit 6d06a74f7f0386a912362ed3caacc287b16412cb