mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
bleargh - uninitialized variables
Original commit message from CVS: bleargh - uninitialized variables
This commit is contained in:
parent
6d8c433fa8
commit
0626bb1c6f
1 changed files with 2 additions and 0 deletions
|
@ -1276,7 +1276,9 @@ gst_value_create_new_range (GValue * dest, int min1, int max1, int min2,
|
||||||
pv2 = &v2;
|
pv2 = &v2;
|
||||||
} else if (min1 <= max1) {
|
} else if (min1 <= max1) {
|
||||||
pv1 = dest;
|
pv1 = dest;
|
||||||
|
pv2 = NULL;
|
||||||
} else if (min2 <= max2) {
|
} else if (min2 <= max2) {
|
||||||
|
pv1 = NULL;
|
||||||
pv2 = dest;
|
pv2 = dest;
|
||||||
} else {
|
} else {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue