I don't see any problem with the sample code you have given.
The following works fine for me.
prasoon@prasoon-desktop ~ $ cat leak_check.cpp && g++ leak_check.cpp && valgrind --leak-check=full ./a.out
#include <cstdlib>
class Base {
public:
static void * operator new (size_t size) {
if (size == 0) size = 1;
return malloc (size);
}
static void operator delete (void *ptr, size_t size) {
if (ptr == NULL) return;
free (ptr);
}
};
int main()
{
Base * p = (Base *) Base::operator new(sizeof(Base));
Base::operator delete((void*)p,sizeof(Base));
}
==4561== Memcheck, a memory error detector
==4561== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al.
==4561== Using Valgrind-3.5.0 and LibVEX; rerun with -h for copyright info
==4561== Command: ./a.out
==4561==
==4561==
==4561== HEAP SUMMARY:
==4561== in use at exit: 0 bytes in 0 blocks
==4561== total heap usage: 1 allocs, 1 frees, 1 bytes allocated
==4561==
==4561== All heap blocks were freed -- no leaks are possible
==4561==
==4561== For counts of detected and suppressed errors, rerun with: -v
==4561== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 17 from 6)
BTW freeing a null pointer is perfectly fine.
The free function causes the space pointed to by ptr to be deallocated, that is, made available for further allocation. If ptr is a null pointer, no action occurs.
So if (ptr == NULL) return; can be omitted.
new? – James McNellis Nov 27 '10 at 6:57free(NULL)is guaranteed to be safe (a no-op), so you don't have to special case it. – Matthew Flaschen Nov 27 '10 at 7:14if (size==0)withif (size=0)and add a private data member as well as a constructor, the code will fail. I knowsize=0is a bug which shouldn't happen but the code fails ONLY when you initialize a private data member of this class in the constructor. – Jaywalker Nov 27 '10 at 7:51