mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
metadata test: Fix wrong looping variable. Test is now valid (but fails).
The inner looping was using the outer looping variable.
This commit is contained in:
parent
96cd20f841
commit
3af671425b
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ test_tags (const gchar * tag_str)
|
|||
name_sent = gst_structure_nth_field_name (sent_tags, i);
|
||||
value_sent = gst_structure_get_value (sent_tags, name_sent);
|
||||
found = FALSE;
|
||||
for (j = 0; i < n_recv; j++) {
|
||||
for (j = 0; j < n_recv; j++) {
|
||||
name_recv = gst_structure_nth_field_name (received_tags, j);
|
||||
if (!strcmp (name_sent, name_recv)) {
|
||||
value_recv = gst_structure_get_value (received_tags, name_recv);
|
||||
|
|
Loading…
Reference in a new issue