From ba830faf7d099db07788f32ac06b8c8baddbd261 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Fri, 22 Nov 2024 13:40:56 +0900 Subject: [PATCH] Update Changelog.md --- Changelog.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 9673878..bc34c5d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,7 +11,9 @@ Fix output by reverting erronous commit. Add counts for bad `realloc`s and `free`s that are printed at program's end. (A bad `realloc` or `free` is an attempted `realloc` or `free` of a memory -location that wasn't `malloc`d, `calloc`d, or `realloc`d.) +location that wasn't `malloc`d, `calloc`d, or `realloc`d. A `realloc` or `free` +of a memory location that was already `free`d and not set to NULL is also +considered a bad `realloc` or `free`.) Internal refactorings.