bleargh - uninitialized variables

Original commit message from CVS:
bleargh - uninitialized variables
This commit is contained in:
Benjamin Otte 2004-04-21 04:13:20 +00:00
parent 6d8c433fa8
commit 0626bb1c6f

View file

@ -1276,7 +1276,9 @@ gst_value_create_new_range (GValue * dest, int min1, int max1, int min2,
pv2 = &v2;
} else if (min1 <= max1) {
pv1 = dest;
pv2 = NULL;
} else if (min2 <= max2) {
pv1 = NULL;
pv2 = dest;
} else {
return FALSE;