up vote 17 down vote favorite
6
share [g+] share [fb]

What is the difference between doing:

ptr = (char **) malloc (MAXELEMS * sizeof(char *));
// OR
ptr = (char **) calloc (MAXELEMS, sizeof(char*));

???

EDT: When is it a good idea to use calloc over malloc or vice versa?

link|improve this question

feedback

5 Answers

up vote 20 down vote accepted

calloc() zero-initializes the buffer, while malloc() leaves the memory uninitialized.

EDIT:

Zeroing out the memory may take a little time, so you probably want to use malloc() if that performance is an issue. If initializing the memory is more important, use calloc(). For example, calloc() might save you a call to memset().

link|improve this answer
10  
The *alloc variants are pretty mnemonic - clear-alloc, memory-alloc, re-alloc. – Jefromi Oct 8 '09 at 15:07
1  
Use malloc() if you are going to set everything that you use in the allocated space. Use calloc() if you're going to leave parts of the data uninitialized - and it would be beneficial to have the unset parts zeroed. – Jonathan Leffler Oct 8 '09 at 15:16
8  
calloc is not necessarily more expensive, since OS can do some tricks to speed it up. I know that FreeBSD, when it gets any idle CPU time, uses that to run a simple process that just goes around and zeroes out deallocated blocks of memory, and marks blocks thus processes with a flag. So when you do calloc, it first tries to find one of such pre-zeroed blocks and just give it to you - and most likely it will find one. – Pavel Minaev Oct 8 '09 at 15:18
1  
Using calloc() is probably a safer bet in general, unless you're trying to optimize every last tiny bit out of your code (and even then, as others have pointed out, your efforts may be futile). – Andrew Song Oct 8 '09 at 15:32
1  
@Pavel: char *foo = malloc(foolen); assert(foo && memset(foo,0,foolen)); covers the debugging aspect, or you could use an eye-catcher byte other than 0. From a last-line of security POV, maybe it would be better to link against a version of malloc which clears the bytes (or sets them to an eye-catcher pointer-sized value, which is mapped to be non-readable and non-writeable), rather than have a policy to call calloc instead? – Steve Jessop Oct 12 '09 at 15:30
show 4 more comments
feedback

A less known difference is that in operating systems with optimistic memory allocation, like Linux, the pointer returned by malloc isn't backed by real memory until the program actually touches it.

calloc does indeed touch the memory (it writes zeroes on it) and thus you'll be sure the OS is backing the allocation with actual RAM (or swap). This is also why it is slower than malloc (not only does it have to zero it, the OS must also find a suitable memory area by possibly swapping out other processes)

See for instance this SO question for further discussion about the behavior of malloc

link|improve this answer
@Isak Savo, What an Answer man, I really loved It :). – mahesh Apr 6 '10 at 15:08
1  
calloc need not write zeros. If the allocated block consists mostly of new zero pages provided by the operating system, it can leave those untouched. This of course requires calloc to be tuned to the operating system rather than a generic library function on top of malloc. Or, an implementor could make calloc compare each word against zero before zeroing it. This would not save any time, but it would avoid dirtying the new pages. – R.. Jan 4 '11 at 13:46
@R.. interesting note. But in practice, does such implementations exist in the wild? – Isak Savo Jan 4 '11 at 14:00
All dlmalloc-like implementations skip the memset if the chunk was obtained via mmaping new anonymous pages (or equivalent). Usually this kind of allocation is used for larger chunks, starting at 256k or so. I don't know of any implementations that do the comparison against zero before writing zero aside from my own. – R.. Jan 5 '11 at 15:57
feedback

There's no difference in the size of the memory block allocated. calloc just fills the memory block with physical all-zero-bits pattern. In practice it is often assumed that the objects located in the memory block allocated with calloc have initilial value as if they were initialized with literal 0, i.e. integers should have value of 0, floating-point variables - value of 0.0, pointers - the appropriate null-pointer value, and so on.

From the pedantic point of view though, calloc (as well as memset(..., 0, ...)) is only guaranteed to properly initialize (with zeroes) objects of type unsigned char. Everything else is not guaranteed to be properly initialized and may contain so called trap representation, which causes undefined behavior. In other words, for any type other than unsigned char the aforementioned all-zero-bits patterm might represent an illegal value, trap representation.

Later, in one of the Technical Corrigenda to C99 standard, the behavior was defined for all integer types (which makes sense). I.e. formally, in the current C language you can initialize only integer types with calloc (and memset(..., 0, ...)). Using it to initialize anything else in general case leads to undefined behavior, from the point of view of C language.

In practice, calloc works, as we all know :), but whether you'd want to use it (considering the above) is up to you. I personally prefer to avoid it completely, use malloc instead and perfrom my own initialization.

link|improve this answer
feedback

One often-overlooked advantage of calloc is that (conformant implementations of) it will help protect you against integer overflow vulnerabilities. Compare:

size_t cnt = get_int32(file);
struct foo *bar = malloc(cnt * sizeof *bar);

vs.

size_t cnt = get_int32(file);
struct foo *bar = calloc(cnt, sizeof *bar);

The former could result in a tiny allocation and subsequent buffer overflows, if cnt is greater than SIZE_MAX/sizeof *bar. The latter will automatically fail in this case since an object that large cannot be created.

Of course you may have to be on the lookout for non-conformant implementations which simply ignore the possibility of overflow... If this is a concern on platforms you target, you'll have to do a manual test for overflow anyway.

link|improve this answer
feedback

Why no one mention contiguous/non-contiguous memory blocks these functions reserve? Is this information still valid?

The malloc( ) function reserves a contiguous memory block whose size in bytes is at least size. When a program obtains a memory block through malloc( ), its contents are undetermined.

The calloc( ) function reserves a block of memory whose size in bytes is at least count x size. In other words, the block is large enough to hold an array of count elements, each of which takes up size bytes. Furthermore, calloc( ) initializes every byte of the memory with the value 0.

Source:

C: In a Nutshell
By Tony Crawford and Peter Prinz

Publisher: O'Reilly
Pub Date: December 2005
ISBN: 0-596-00697-7 Pages: 618

link|improve this answer
1  
This is incorrect. See "representation of types" in the C standard. All objects (including arrays) are represented as an overlaid unsigned char whose number of elements is the size of the object. If this is not the definition of "contiguous", I don't know how you could possibly make a distinction between "contiguous" and "non-contiguous" within the framework of the C language. – R.. Jan 4 '11 at 13:43
feedback

Your Answer

 
or
required, but never shown

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