osmo-epdg: UE: free the own imsi on destroy()

This commit is contained in:
Alexander Couzens 2024-02-17 01:41:24 +01:00
parent 33974bdfae
commit e5667d8499
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ METHOD(osmo_epdg_ue_t, destroy, void,
private_osmo_epdg_ue_t *this)
{
this->lock->destroy(this->lock);
free(this->imsi);
free(this);
}