Changeset 1469 in kBuild
- Timestamp:
- Mar 31, 2008 5:00:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/misc.c
r1438 r1469 375 375 void *result; 376 376 #ifdef CONFIG_WITH_MAKE_STATS 377 make_stats_allocated -= SIZE_OF_HEAP_BLOCK (ptr); 378 make_stats_allocated_sum -= SIZE_OF_HEAP_BLOCK (ptr); 377 if (ptr != NULL) 378 { 379 make_stats_allocated -= SIZE_OF_HEAP_BLOCK (ptr); 380 make_stats_allocated_sum -= SIZE_OF_HEAP_BLOCK (ptr); 381 } 379 382 #endif 380 383
Note:
See TracChangeset
for help on using the changeset viewer.