mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 05:26:23 +00:00
validate: Fix mixup in variable check
This commit is contained in:
parent
125d411063
commit
94ee508123
1 changed files with 1 additions and 1 deletions
|
@ -428,7 +428,7 @@ compare_segment_list (GstValidateMediaDescriptor * ref,
|
|||
rsegments = rsegments->next, csegments = csegments->next, i++) {
|
||||
GstValidateSegmentNode *rsegment, *csegment;
|
||||
|
||||
if (csegment == NULL) {
|
||||
if (csegments == NULL) {
|
||||
/* The list was checked to be of the same size */
|
||||
g_assert_not_reached ();
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue