From 2977240eb0be945bf96a906b2659329fcc36439f Mon Sep 17 00:00:00 2001 From: Arun Muthusamy Date: Fri, 5 Nov 2021 03:53:53 +0100 Subject: [PATCH] Fix: voice, Dialling long number causes CalledPartyNumber overrun --- dmtree/tr104/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmtree/tr104/common.h b/dmtree/tr104/common.h index 49e88107..9b67f36c 100644 --- a/dmtree/tr104/common.h +++ b/dmtree/tr104/common.h @@ -25,8 +25,8 @@ struct codec_info { struct call_log_entry { struct list_head list; - char calling_num[20], called_num[20]; - char source[64], destination[64], used_line[64]; + char calling_num[256], called_num[256]; + char source[256], destination[256], used_line[256]; char direction[16]; char start_time[32]; char duration[8];