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
(from parent 1:
d61cbc8
)
Make sure the hashtable is initialized when the object is used.
author
Wim Taymans
<wim.taymans@gmail.com>
Wed, 12 Dec 2001 18:52:21 +0000
(18:52 +0000)
committer
Wim Taymans
<wim.taymans@gmail.com>
Wed, 12 Dec 2001 18:52:21 +0000
(18:52 +0000)
Original commit message from CVS:
Make sure the hashtable is initialized when the object is used.
libs/control/gstdparammanager.c
patch
|
blob
|
history
diff --git
a/libs/control/gstdparammanager.c
b/libs/control/gstdparammanager.c
index
de03640
..
b925683
100644
(file)
--- a/
libs/control/gstdparammanager.c
+++ b/
libs/control/gstdparammanager.c
@@
-39,7
+39,6
@@
static guint gst_dpman_process_noop(GstDParamManager *dpman, guint frame_count);
void
_gst_dpman_initialize()
{
- _element_registry = g_hash_table_new(NULL,NULL);
}
GType
@@
-83,6
+82,7
@@
gst_dpman_class_init (GstDParamManagerClass *klass)
gst_dpman_register_mode (klass, "disabled",
gst_dpman_preprocess_noop, gst_dpman_process_noop, NULL, NULL);
+ _element_registry = g_hash_table_new(NULL,NULL);
}
static void