After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 577887 - Missing GST_DISABLE_GST_DEBUG in gstregistrybinary.c
Missing GST_DISABLE_GST_DEBUG in gstregistrybinary.c
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
0.10.22
Other All
: Normal normal
: 0.10.23
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-04-03 21:41 UTC by David Hoyt
Modified: 2009-04-04 06:49 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Possible fix (496 bytes, patch)
2009-04-03 21:42 UTC, David Hoyt
none Details | Review

Description David Hoyt 2009-04-03 21:41:31 UTC
There's a missing #ifndef GST_DISABLE_GST_DEBUG around the g_timer_destroy() call.

On line 1167, replace 

g_timer_destroy (timer);

with:

#ifndef GST_DISABLE_GST_DEBUG
       g_timer_destroy (timer);
#endif
Comment 1 David Hoyt 2009-04-03 21:42:37 UTC
Created attachment 132040 [details] [review]
Possible fix
Comment 2 Sebastian Dröge (slomo) 2009-04-04 06:49:03 UTC
Thanks, this is actually already fixed in GIT :)