channel / app_meetme: Fix parentheses.

ASTERISK-27025

Change-Id: Id736b0aa4ec6b6b0f04663d64fa8d151f81fdbed
This commit is contained in:
Joshua Colp
2017-05-31 09:25:02 +00:00
parent cf60a0c5bd
commit f6eeaaafd5
2 changed files with 2 additions and 2 deletions

View File

@@ -9116,7 +9116,7 @@ static int redirecting_reason_build_data(unsigned char *data, size_t datalen,
if (reason->str) {
length = strlen(reason->str);
if (datalen < pos + sizeof(data[0] * 2) + length) {
if (datalen < pos + (sizeof(data[0]) * 2) + length) {
ast_log(LOG_WARNING, "No space left for %s string\n", label);
return -1;
}