dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 82514 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r82514 | file | 2007-09-16 23:00:59 -0300 (Sun, 16 Sep 2007) | 4 lines

(closes issue #10734)
Reported by: asgaroth
Instead of passing a NULL pointer into snprintf pass "". It makes Solaris much happier.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@82516 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-09-17 02:02:09 +00:00
parent 22c370848d
commit 8009b9891c
1 changed files with 1 additions and 1 deletions

View File

@ -3329,7 +3329,7 @@ static void print_ext(struct ast_exten *e, char * buf, int buflen)
} else {
snprintf(buf, buflen, "%d. %s(%s)",
prio, ast_get_extension_app(e),
(char *)ast_get_extension_app_data(e));
(!ast_strlen_zero(ast_get_extension_app_data(e)) ? (char *)ast_get_extension_app_data(e) : ""));
}
}