mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-07 02:18:15 +00:00
Merged revisions 187363 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r187363 | tilghman | 2009-04-09 11:39:43 -0500 (Thu, 09 Apr 2009) | 10 lines Merged revisions 187362 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r187362 | tilghman | 2009-04-09 11:38:37 -0500 (Thu, 09 Apr 2009) | 3 lines Permit zero-length text messages in SIP. (Related to an issue posted to the -users list, subject "AEL2, BASE64_DECODE and hexadecimal") ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@187364 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3440,7 +3440,9 @@ static int sip_sendtext(struct ast_channel *ast, const char *text)
|
||||
ast_verbose("Sending text %s on %s\n", text, ast->name);
|
||||
if (!p)
|
||||
return -1;
|
||||
if (ast_strlen_zero(text))
|
||||
/* NOT ast_strlen_zero, because a zero-length message is specifically
|
||||
* allowed by RFC 3428 (See section 10, Examples) */
|
||||
if (!text)
|
||||
return 0;
|
||||
if (debug)
|
||||
ast_verbose("Really sending text %s on %s\n", text, ast->name);
|
||||
|
||||
Reference in New Issue
Block a user