mgcp: Move the mgcp_free_endp into the right path for the CRCX failure

This commit is contained in:
Holger Hans Peter Freyther 2010-08-06 07:05:13 +08:00
parent 6f36e92cab
commit 414bf401c7
1 changed files with 1 additions and 1 deletions

View File

@ -515,10 +515,10 @@ error:
LOGP(DMGCP, LOGL_ERROR, "Malformed line: %s on 0x%x with: line_start: %d %d\n",
hexdump(msg->l3h, msgb_l3len(msg)),
ENDPOINT_NUMBER(endp), line_start, i);
mgcp_free_endp(endp);
return create_response(error_code, "CRCX", trans_id);
error2:
mgcp_free_endp(endp);
LOGP(DMGCP, LOGL_NOTICE, "Resource error on 0x%x\n", ENDPOINT_NUMBER(endp));
return create_response(error_code, "CRCX", trans_id);
}