Changeset 71 for trunk/src/helpers/memdebug.c
- Timestamp:
- May 22, 2001, 7:18:41 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/memdebug.c
r21 r71 456 456 * 457 457 *@@added V0.9.6 (2000-11-12) [umoeller] 458 *@@changed V0.9.12 (2001-05-21) [umoeller]: this reported errors on realloc(0), which is a valid call, fixed 458 459 */ 459 460 … … 466 467 void *prc = NULL; 467 468 BOOL fFound = FALSE; 469 470 if (!p) 471 // p == NULL: this is valid, use malloc() instead 472 // V0.9.12 (2001-05-21) [umoeller] 473 return (memdMalloc(stSize, pcszSourceFile, ulLine, pcszFunction)); 468 474 469 475 if (memdLock())
Note:
See TracChangeset
for help on using the changeset viewer.