Skip to content

Commit 9bc7337

Browse files
InterLinked1gtjoseph
authored andcommitted
chan_dahdi: Resolve format truncation warning.
Fixes a format truncation warning in notify_message. ASTERISK-30256 #close Change-Id: I983a423c0214641ca4f8c9dfe0b19c47448fdee1
1 parent 5daf32b commit 9bc7337

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

channels/chan_dahdi.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3447,7 +3447,7 @@ struct sig_ss7_callback sig_ss7_callbacks =
34473447
*/
34483448
static void notify_message(char *mailbox, int thereornot)
34493449
{
3450-
char s[sizeof(mwimonitornotify) + 80];
3450+
char s[sizeof(mwimonitornotify) + 164];
34513451

34523452
if (ast_strlen_zero(mailbox)) {
34533453
return;

0 commit comments

Comments
 (0)