Merge branch 'coverity-signal-emissions' into 'main'

gsignal: Change signal instance ref semantics under static analysis

See merge request GNOME/glib!2762
This commit is contained in:
Philip Withnall 2022-06-21 12:54:41 +00:00
commit f805635e11

View File

@ -3402,7 +3402,16 @@ g_signal_emit_valist (gpointer instance,
if (closure != NULL)
{
/*
* Coverity doesnt understand the paired ref/unref here and seems
* to ignore the ref, thus reports every call to g_signal_emit()
* as causing a double-free. Thats incorrect, but I cant get a
* model file to work for avoiding the false positives, so instead
* comment out the ref/unref when doing static analysis.
*/
#ifndef __COVERITY__
g_object_ref (instance);
#endif
_g_closure_invoke_va (closure,
return_accu,
instance,
@ -3452,8 +3461,11 @@ g_signal_emit_valist (gpointer instance,
TRACE(GOBJECT_SIGNAL_EMIT_END(signal_id, detail, instance, instance_type));
/* See comment above paired ref above */
#ifndef __COVERITY__
if (closure != NULL)
g_object_unref (instance);
#endif
return;
}