Fixes for GCC 9

Various fixes for issues caught by gcc 9.  Mostly snprintf
trying to copy to a buffer potentially too small.

ASTERISK-28412

Change-Id: I9e85a60f3c81d46df16cfdd1c329ce63432cf32e
This commit is contained in:
George Joseph
2019-05-10 09:48:28 -06:00
parent 85242a9bb9
commit c5c953c1f1
8 changed files with 12 additions and 12 deletions

View File

@@ -98,7 +98,7 @@ static int utf8decode (unsigned char **pp)
*/
static char txqcheck (char *dir, char *queue, char subaddress, char *channel, char *callerid, int wait, int delay, int retries, int concurrent)
{
char ogname[100],
char ogname[300],
temp[100],
dirname[100],
*p=NULL;