sms: Don't leak memory, even in bizarre conditions

This commit is contained in:
Denis Kenzior 2011-03-18 15:41:07 -05:00
parent 7a7c0717f5
commit 7dcae49cc5
1 changed files with 2 additions and 2 deletions

View File

@ -643,8 +643,7 @@ static void sms_tx_queue_remove_entry(struct ofono_sms *sms, GList *entry_list)
break;
default:
ofono_error("Unexpected sms state %d", sms->tx_state);
return;
goto done;
}
__ofono_history_sms_send_status(modem, &entry->uuid,
@ -668,6 +667,7 @@ static void sms_tx_queue_remove_entry(struct ofono_sms *sms, GList *entry_list)
}
}
done:
tx_queue_entry_destroy(entry);
}