char* buf;
buf = malloc(BUFSIZ);
memset(buf ,0 , BUFSIZ);
I think that memset initializes the buf variable with size of BUFSIZ, but malloc also allocates a block of size BUFSIZE of memory and returning a pointer to the beginning of the block to the variable buf... I do not know if memset can be used for pointers because it initialize data with size BUFSIZE but we do not poit to it.... Can you suggests anything to fix this problem, thanks
Hi all and thanks for the answers. So I understood that the problem generally comes from the fact that malloc can fail and then the buf will point to NULL. And maybe the best way to fix the flaw of the code is to check if buf is equals to null?
char* buf;
buf = malloc(BUFSIZ);
if(buf!=null)
{
memset(buf ,0 , BUFSIZ);
}
Maybe the best way to fix the flaw of the code is to check if buf is equals to null?
char* buf;
buf = malloc(BUFSIZ);
if(buf!=null)
{
memset(buf ,0 , BUFSIZ);
}
Is it possible in practice malloc to fail? Or it is just a theory?
malloc. You can get away with that on linux (because of over-commit and the OOM killer) and on other platforms with protected memory (provided that segfault-and-die is an acceptable response) but is is a bad practice in general. – dmckee Nov 12 '11 at 21:48