From 252ab4c1398de22e9235a115cf45723eca0786d6 Mon Sep 17 00:00:00 2001
From: winckel <winckel@eurecom.fr>
Date: Thu, 9 Jan 2014 07:49:02 +0000
Subject: [PATCH] Increase buffer size to avoid overflow with long names.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4833 818b1a75-f10b-46b9-bf7c-635c3b92a50f
---
 common/utils/itti_analyzer/libparser/field_type.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/utils/itti_analyzer/libparser/field_type.c b/common/utils/itti_analyzer/libparser/field_type.c
index 11b8a1394..58538bd1f 100644
--- a/common/utils/itti_analyzer/libparser/field_type.c
+++ b/common/utils/itti_analyzer/libparser/field_type.c
@@ -16,7 +16,7 @@ int field_dissect_from_buffer(
     buffer_t *buffer, uint32_t offset, uint32_t parent_offset, int indent, gboolean new_line)
 {
     int length = 0;
-    char cbuf[50];
+    char cbuf[200];
     types_t *type_child;
     char array_info[50];
     new_line = FALSE;
-- 
GitLab