bleargh - uninitialized variables
authorBenjamin Otte <otte@gnome.org>
Wed, 21 Apr 2004 04:13:20 +0000 (04:13 +0000)
committerBenjamin Otte <otte@gnome.org>
Wed, 21 Apr 2004 04:13:20 +0000 (04:13 +0000)
Original commit message from CVS:
bleargh - uninitialized variables

gst/gstvalue.c

index 25b273fb9a7d2b2476ac78bfae19e92495da0a2d..7cfb07cfd708e5e84a31d6797080815cd5ea2435 100644 (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;