I have three lines (version) of a linux product. V1 works fine in the customer. V2 and V3 crashed and the fix seems to be a memset call after a malloc call.

What is the deeper explanation on this topic? Why memset resolved the issue?

link|improve this question

4  
Show some code. – cnicutar Jun 29 '11 at 16:10
My car is broken, it seems that after I start it it doesn't work. My friend has the same car and it doesn't break. What's the problem? - Please add some code, we are not prophets. – dark_charlie Jun 29 '11 at 16:13
@cnicutar did it crashe in V1? – cateof Jun 29 '11 at 16:13
@dark_charlie, it looks like that some user do not need code. – cateof Jun 29 '11 at 16:17
There is no rule in SO community that mandates to append code in a question. Company rules do not allow to paste code here. Anyway... – cateof Jun 29 '11 at 16:29
feedback

closed as not a real question by dark_charlie, larsmans, DevSolar, Neil Knight, Paul R Jun 29 '11 at 16:18

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

My guess without a code example is that you were operating on the buffer or struct you malloc'd with assumptions that its contents would be initialized with certain default values. Malloc doesn't initialize the memory it hands back, so unless you memset or use some other initialization, the values in that memory could be anything, and therefore, if you're trying to check a pointer assuming it'd be NULL or that an int will be zero, you can't make that assumption without initializing the memory first.

link|improve this answer
Thanks. Your guess helped me. – cateof Jun 29 '11 at 16:25
feedback

Maybe because there is a wrong assumtion that the allocated buffer is zeroed. So for example if the buffer contains a string and is printed somewhere before initialize, it can result in an access violation. Zeroing the buffer would fix such an issue.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.