Skip to content

Release of tar ball version 0.1.1

Compare
Choose a tag to compare
@CarloWood CarloWood released this 05 Jan 01:37
· 35 commits to master since this release

Fixed a crash that occurred at start up when malloc is first called from printf() in a C program.
This reveals a more general problem though: if the first call to malloc() is too large, libmemleak
will crash. To work around this, please add at the start of main() a call to some small malloc(),
ie void* p = malloc(1); if you run into this.