VirtualBox

Changeset 49080 in vbox for trunk/src


Ignore:
Timestamp:
Oct 14, 2013 2:31:01 AM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
89887
Message:

baka fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp

    r49077 r49080  
    220220        if (!RTDirExists(szMapPath))
    221221        {
    222             rc = RTDirCreate(szMapPath, 0755, 0/*fFlags*/);
     222            rc = RTDirCreate(szMapPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL);
    223223            if (RT_FAILURE(rc))
    224224                return RTMsgErrorRc(rc, "RTDirCreate failed on '%s' (UUID map path): %Rrc", szMapPath, rc);
     
    323323    if (!RTDirExists(szDstPath))
    324324    {
    325         rc = RTDirCreate(szDstPath, 0755, 0 /*fFlags*/);
     325        rc = RTDirCreate(szDstPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL);
    326326        if (RT_FAILURE(rc))
    327327            return RTMsgErrorRc(rc, "Error creating '%s': %Rrc", szDstPath, rc);
     
    334334    if (!RTDirExists(szDstPath))
    335335    {
    336         rc = RTDirCreate(szDstPath, 0755, 0 /*fFlags*/);
     336        rc = RTDirCreate(szDstPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL);
    337337        if (RT_FAILURE(rc))
    338338            return RTMsgErrorRc(rc, "Error creating '%s': %Rrc", szDstPath, rc);
     
    11591159                    if (!RTPathExists(pszCache))
    11601160                    {
    1161                         rc = RTDirCreate(pszCache, 0755, 0 /*fFlags*/);
     1161                        rc = RTDirCreate(pszCache, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL);
    11621162                        if (RT_FAILURE(rc))
    11631163                            return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Error creating cache directory '%s': %Rrc", pszCache, rc);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette