gatchat: Remove unneeded if

This commit is contained in:
Denis Kenzior 2019-04-29 14:29:21 -05:00
parent 999494624b
commit 713655a1ae
1 changed files with 1 additions and 2 deletions

View File

@ -952,8 +952,7 @@ gboolean g_at_mux_setup_gsm0710(GAtChat *chat,
mux_query_cb, msd, msd_free) > 0)
return TRUE;
if (msd)
msd_free(msd);
msd_free(msd);
return FALSE;
}