Result of malloc(0)

I just wondering what is the result of malloc(0). Does it return a NULL pointer? After checking the result with the Visual Studio 2005 in WinXP platform, the answer is: it returns a non-NULL pointer! However, that non-NULL pointer should not be used anymore.

From stackoverflow by someone's reply, I understand that the return value of malloc(0) is inplementation-dependent.

malloc(0) is Implementation Defined as far as C99 is concerned.
From C99 [Section 7.20.3]
The order and contiguity of storage allocated by successive calls to the calloc, malloc, and realloc functions is unspecified. The pointer returned if the allocation succeeds is suitably aligned so that it may be assigned to a pointer to any type of object and then used to access such an object or an array of such objects in the space allocated (until the space is explicitly deallocated). The lifetime of an allocated object extends from the allocation until the deallocation. Each such allocation shall yield a pointer to an object disjoint from any other object. The pointer returned points to the start (lowest byte address) of the allocated space. If the space cannot be allocated, a null pointer is returned. If the size of the space requested is zero, the behavior is implementation- defined: either a null pointer is returned, or the behavior is as if the size were some nonzero value, except that the returned pointer shall not be used to access an object.

留言

熱門文章