Commit 252ab4c1 authored by winckel's avatar winckel

Increase buffer size to avoid overflow with long names.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4833 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 283e9ce2
...@@ -16,7 +16,7 @@ int field_dissect_from_buffer( ...@@ -16,7 +16,7 @@ int field_dissect_from_buffer(
buffer_t *buffer, uint32_t offset, uint32_t parent_offset, int indent, gboolean new_line) buffer_t *buffer, uint32_t offset, uint32_t parent_offset, int indent, gboolean new_line)
{ {
int length = 0; int length = 0;
char cbuf[50]; char cbuf[200];
types_t *type_child; types_t *type_child;
char array_info[50]; char array_info[50];
new_line = FALSE; new_line = FALSE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment