sip: fix memory leak (x_gcr) in send_invite()

Change-Id: I6a2e5e15061010f6e62d0f3b0acd2c040dbe3249
Fixes: Id40d7e0fed9356f801b3627c118150055e7232b1
Related: OS#5164
This commit is contained in:
Vadim Yanitskiy 2021-10-27 16:26:05 +03:00
parent 364f237b42
commit 5e178d2c55
1 changed files with 1 additions and 0 deletions

View File

@ -692,6 +692,7 @@ static int send_invite(struct sip_agent *agent, struct sip_call_leg *leg,
talloc_free(from);
talloc_free(to);
talloc_free(sdp);
talloc_free(x_gcr);
return 0;
}