}
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_