GNOME Bugzilla – Bug 751716
dashdemux: %u is not correctly parsed for segment templates
Last modified: 2015-08-16 13:41:21 UTC
promote_format_to_uint64 function: /* After any 0 and alphanumeric values, there must be * an d, x or u. Otherwise validation would have failed */ g_assert (p[0] == 'd' || p[0] == 'x' || p[0] != 'u'); should be: g_assert (p[0] == 'd' || p[0] == 'x' || p[0] == 'u');
Created attachment 306395 [details] [review] proposed patch
commit 0f37768626a5fa4bec4ee3aaf7a295dfc0a2fde0 Author: Florin Apostol <florin.apostol@oregan.net> Date: Tue Jun 30 13:20:43 2015 +0100 dashdemux: corrected parsing of %u in segment templates https://bugzilla.gnome.org/show_bug.cgi?id=751716