Skip to content
Advertisement

Data gets distorted which is printed in loop

Facing issue when printing the data that is updated in malloc. In the below code am creating a string Test.DataType_1.Tag_1 …. Test.DataType_1.Tag_20 in create_tags() function, when the data is updated properly and printed i create_tags() function it prints properly but if printed in main() function in for loop data is distorted.

JavaScript

The output of the code is follows, when i print the data inside create_tags() function, the data populated is correctly printed here am printing the same data twice. But when i print the same in loops it get distorted in printf("%sn", group[count].tag[k].nodeID);

JavaScript

Any hint as to why this is happening will be helpful.

Advertisement

Answer

In your main function, you allocate both the group array, and the tag array within it, with an element size of sizeof(GROUP). In addition, you use that same size when zeroing out the tag array:

JavaScript

Since GROUP consists of an integer and pointer, it’s almost certainly going to be smaller that the 50-byte TAG_NAME. That would mean you don’t allocate enough space for it, probably leading to buffer overruns in the memory arena later on, where your code assumes it has enough space.

You should use sizeof(TAG_NAME) when allocating (and zeroing) the tag array. But, given you want to zero-initialise it, you may want to use calloc instead of the malloc/memset combo:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement