Changeset 2530 for branches


Ignore:
Timestamp:
Feb 5, 2006, 5:13:28 AM (20 years ago)
Author:
bird
Message:

Fixed incorrect assertion in libc_back_fsInfoObjRelease.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/src/lib/sys/fs.c

    r2529 r2530  
    18241824    {
    18251825        int cRefs = __atomic_decrement_s32(&pFsInfo->cRefs);
    1826         LIBC_ASSERT(cRefs >= 1); (void)cRefs;
     1826        LIBC_ASSERT(cRefs >= 0); (void)cRefs;
    18271827    }
    18281828}
Note: See TracChangeset for help on using the changeset viewer.