* mu: small error-handling improvement

This commit is contained in:
djcb
2012-10-24 23:49:54 +03:00
parent dc5f27c899
commit f19ede80ce
2 changed files with 21 additions and 14 deletions

View File

@ -131,7 +131,8 @@ runtime_free (void)
void
mu_runtime_uninit (void)
{
g_return_if_fail (_initialized);
if (!_initialized)
return;
runtime_free ();