projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d8c433
)
bleargh - uninitialized variables
author
Benjamin Otte
<otte@gnome.org>
Wed, 21 Apr 2004 04:13:20 +0000
(
04:13
+0000)
committer
Benjamin 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
patch
|
blob
|
history
diff --git
a/gst/gstvalue.c
b/gst/gstvalue.c
index 25b273fb9a7d2b2476ac78bfae19e92495da0a2d..7cfb07cfd708e5e84a31d6797080815cd5ea2435 100644
(file)
--- a/
gst/gstvalue.c
+++ b/
gst/gstvalue.c
@@
-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;