m_realloc: Account only allocation size difference in total_bytes_allocated.

This commit is contained in:
Paul Sokolovsky 2014-01-01 23:04:25 +02:00
parent 4b57fac1c8
commit 43f1c8080a
1 changed files with 6 additions and 1 deletions

View File

@ -41,7 +41,12 @@ void *m_realloc(void *ptr, int old_num_bytes, int new_num_bytes) {
printf("could not allocate memory, reallocating %d bytes\n", new_num_bytes);
return NULL;
}
total_bytes_allocated += new_num_bytes;
// At first thought, "Total bytes allocated" should only grow,
// after all, it's *total*. But consider for example 2K block
// shrunk to 1K and then grown to 2K again. It's still 2K
// allocated total. If we process only positive increments,
// we'll count 3K.
total_bytes_allocated += new_num_bytes - old_num_bytes;
return ptr;
}