aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-05-21 17:04:35 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-05-23 09:59:25 +0200
commitcd062c8c664bf9317f726e27ed3dabb1c35618d0 (patch)
treec91600c572ba26bb9bf832f5942cb684dd439c26 /src
parent4db78de76e3127c80fc41009ee4767155d215c73 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/mgcp/mgcp_protocol.c2
1 files changed, 1 insertions, 1 deletions
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);