* mu-msg-crypto: don't use g_clear_object, it requires glib 2.28
This commit is contained in:
@ -298,7 +298,9 @@ sig_info_destroy (MuMsgPartSigInfo *siginfo)
|
|||||||
if (!siginfo)
|
if (!siginfo)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
g_clear_object (&siginfo->_cert);
|
if (G_IS_OBJECT(siginfo->_cert))
|
||||||
|
g_object_unref (siginfo->_cert);
|
||||||
|
|
||||||
g_free (siginfo);
|
g_free (siginfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user