GNOME Bugzilla – Bug 577887
Missing GST_DISABLE_GST_DEBUG in gstregistrybinary.c
Last modified: 2009-04-04 06:49:03 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
Created attachment 132040 [details] [review] Possible fix
Thanks, this is actually already fixed in GIT :)