I have read that calloc (malloc+init) will sometimes fail to init array with zero bytes (but will still return pointer to a malloc'ed array). but in documentation it does not specify that it will return NULL, is there a way to be sure that array was initialized to zero (better then going over array), if not what is the advantage of calloc over malloc ?
|
feedback
|
|
If Unless you have a buggy library. In which case you should tread carefully. And maybe consider getting a new toolchain, fix the bug (most libraries come with source) or write your own version of I think that chances are that | |||||||
feedback
|
memsetfails, as ask what happens whencallocfails to clear the memory. The answer to both is the same -- it is not permitted to fail. – Steve Jessop Feb 15 at 9:29