slomo gstreamer: gstreamer/ gstreamer/gst/

[email protected] Sun, 11 Jan 2009 01:47:07 -0800 (PST)
Newsgroups gmane.comp.video.gstreamer.cvs
Message-ID <[email protected]>
--===============0377963928660662215==

CVS Root:       /cvs/gstreamer
Module:         gstreamer
Changes by:     slomo
Date:           Sun Jan 11 2009  09:47:07 UTC

Log message:
* gst/gstutils.h:
Initialize g_once_init* data with 0. Fixes bug #567225.

Modified files:
    .               : ChangeLog
    gst             : gstutils.h

Links:
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/ChangeLog.diff?r1=1.4220&r2=1.4221
http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gstreamer/gst/gstutils.h.diff?r1=1.96&r2=1.97

====Begin Diffs====
Index: ChangeLog
===================================================================
RCS file: /cvs/gstreamer/gstreamer/ChangeLog,v
retrieving revision 1.4220
retrieving revision 1.4221
diff -u -d -r1.4220 -r1.4221
--- ChangeLog	9 Jan 2009 23:37:17 -0000	1.4220
+++ ChangeLog	11 Jan 2009 09:46:50 -0000	1.4221
@@ -1,3 +1,8 @@
+2009-01-11  Sebastian Dröge  <[email protected]>
+
+	* gst/gstutils.h:
+	Initialize g_once_init* data with 0. Fixes bug #567225.
 2009-01-09  Jan Schmidt  <[email protected]>
 
 	* configure.ac:
Index: gstutils.h
RCS file: /cvs/gstreamer/gstreamer/gst/gstutils.h,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -d -r1.96 -r1.97
--- gstutils.h	17 Nov 2008 04:49:06 -0000	1.96
+++ gstutils.h	11 Jan 2009 09:46:52 -0000	1.97
@@ -144,7 +144,7 @@
   /* The typedef for GType may be gulong or gsize, depending on the	\
    * system and whether the compiler is c++ or not. The g_once_init_*	\
    * functions always take a gsize * though ... */			\
-  static volatile gsize gonce_data;					\
+  static volatile gsize gonce_data = 0;					\
   if (__gst_once_init_enter (&gonce_data)) {				\
     GType _type;							\
     _type = gst_type_register_static_full (parent_type_macro,           \


--===============0377963928660662215==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
--===============0377963928660662215==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
gstreamer-cvs-verbose mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gstreamer-cvs-verbose

--===============0377963928660662215==--