more uninitialized variables - and no, I won't use -O2

Original commit message from CVS:
more uninitialized variables - and no, I won't use -O2
This commit is contained in:
Benjamin Otte 2004-04-21 04:18:17 +00:00
parent 0626bb1c6f
commit 681588c843

View file

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