]> Kevux Git Server - fll/commitdiff
Bugfix: The macro _f_memory_NO_zeroing_on_larger_ is being applied on smaller.
authorKevin Day <Kevin@kevux.org>
Thu, 13 Mar 2025 03:06:45 +0000 (22:06 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 13 Mar 2025 03:06:45 +0000 (22:06 -0500)
If the new memory size is smalle, then the _f_memory_NO_zeroing_on_larger_ should not be used.

level_0/f_memory/c/private-memory.c

index af9d33b34c7bd148f365785b83f00b94db927b99..a28123436fee60e077d8a89e5d02b50a0252aa74 100644 (file)
@@ -14,15 +14,13 @@ extern "C" {
     }
 
     if (*pointer) {
-      #ifndef _f_memory_NO_zeroing_on_larger_
-        if (length_old) {
-          if (length_new < length_old) {
+      if (length_old) {
+        if (length_new < length_old) {
 
-            // Casting (void *) to (uint8_t *) should result in an increment of size 1 and avoids problems with (void *) having arithmetic issues.
-            memset((void *) (((uint8_t *) *pointer) + length_new), 0, type_size * (length_old - length_new));
-          }
+          // Casting (void *) to (uint8_t *) should result in an increment of size 1 and avoids problems with (void *) having arithmetic issues.
+          memset((void *) (((uint8_t *) *pointer) + length_new), 0, type_size * (length_old - length_new));
         }
-      #endif // _f_memory_NO_zeroing_on_larger_
+      }
 
       if (length_new) {
         #ifdef _f_memory_USE_reallocarray_