Linus Torvalds <torvalds@xxxxxxxx> writes: > On Sun, 27 Aug 2006, Junio C Hamano wrote: >> >> Eh, free(NULL) should work just fine. It is "other places" that >> is misguided and needs to be fixed. > > Well, some very old libraries will SIGSEGV on free(NULL). > > Admittedly those libraries are either very old or _very_ broken, but if > you want to be strictly portable, you should not ever pass NULL to free(), > unless you actually got it from a malloc(0) (and even then, it might be a > really broken libc that just ran out of memory). Fair enough, but I think there are many places we already assume the library handles free(NULL) sensibly. > I actually suspect we should wrap all free() calls as "xfree()", which may > also help us some day if we want to do any memory usage statistics. That sounds sensible. Another thing I was thinking about was to extend the existing XMALLOC_POISON debugging to allow also xrealloc()'ed area. That would unfortunately involve wrapping strdup() and x*alloc() to make sure all allocations we do go through xmalloc() and then store the current allocation size somewhere hidden (immediately before, perhaps) in the area xmalloc() returns, but at that point running git under valgrind would probably be easier. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html