From 67d20b46737a359c4a1294e297972e3775796f9d Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 4 Jun 2024 15:50:00 +0900 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b0ba03d..20d9747 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ If a release build is desired, use `cmake -S -B buildRelease LD_PRELOAD=path/libAnotherMemCheck.so ./myProgram 3. When the program exits, there should be diagnostic output from this library - showing all memory that has been `malloc`ed and not `free`ed. Note that some - memory will always be shown as having been not `free`ed (e.g. initializing - heap stuff for the program at start). + showing all memory that has been `malloc`ed or `calloc`ed and not `free`ed. + Note that some memory will always be shown as having been not `free`ed (e.g. + initializing heap stuff for the program at start). ## Other Notes