GNOME Bugzilla – Bug 578201
_gst_plugin_fault_handler_is_setup undefined under HAVE_WIN32
Last modified: 2009-04-17 08:24:23 UTC
If HAVE_WIN32 is defined, _gst_plugin_fault_handler_is_setup will not be defined. However, functions below (_gst_plugin_fault_handler_restore and _gst_plugin_fault_handler_setup) use this variable whether HAVE_WIN32 is defined or not.
Created attachment 132800 [details] [review] proposed fix: move variable into the block where it's used
Jan, maybe this could go in as well?
commit b31896b2af77271ec6d7214280240aba97c1e65a Author: Tim-Philipp Müller <tim.muller@collabora.co.uk> Date: Fri Apr 17 09:17:40 2009 +0100 GstPlugin: fix compilation if both HAVE_WIN32 and HAVE_SIGACTION are defined Move _gst_plugin_fault_handler_is_setup into the ifdef block where it's used. Fixes #578201.