Ignore:
Timestamp:
May 22, 2001, 7:18:41 PM (24 years ago)
Author:
umoeller
Message:

misc updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/memdebug.c

    r21 r71  
    456456 *
    457457 *@@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
    458459 */
    459460
     
    466467    void *prc = NULL;
    467468    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));
    468474
    469475    if (memdLock())
Note: See TracChangeset for help on using the changeset viewer.