Ignore:
Timestamp:
Nov 21, 2013, 1:26:35 AM (12 years ago)
Author:
bird
Message:

NDEBUG and other adjustments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/nt/ntstat.c

    r2702 r2703  
    358358
    359359        /* On things like pagefile.sys we may get sharing violation. */
    360         if (GetLastError() == ERROR_SHARING_VIOLATION)
     360        if (errno == ETXTBSY)
    361361        {
    362362            /** @todo Fall back on the parent directory enum if we run into a sharing
     
    365365        rc = -1;
    366366    }
    367 
    368 #if 1
    369     if (strchr(pszPath, ';'))
    370         __debugbreak();
    371 #endif
    372367
    373368    return rc;
Note: See TracChangeset for help on using the changeset viewer.