From cd062c8c664bf9317f726e27ed3dabb1c35618d0 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 21 May 2013 17:04:35 +0200 Subject: mgcp: Initialize the tone to CHAR_MAX as this might not be a request The RQNT message might not contain a 'S:' line with the actual tone to play. Instead of calling the callback with the 0 as tone just leave early. Example: X: 6B9519B88F0 R: D/[0-9#*](N), G/ft, fxr/t38 Merged from the OpenBSC development tree --- src/mgcp/mgcp_protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mgcp/mgcp_protocol.c b/src/mgcp/mgcp_protocol.c index f847caf..2a4a464 100644 --- a/src/mgcp/mgcp_protocol.c +++ b/src/mgcp/mgcp_protocol.c @@ -904,7 +904,7 @@ static struct msgb *handle_noti_req(struct mgcp_parse_data *p) { int res = 0; char *line; - char tone = 0; + char tone = CHAR_MAX; if (p->found != 0) return create_err_response(NULL, 400, "RQNT", p->trans); -- cgit v1.2.3