Changeset 39926 in vbox for trunk/src/libs
- Timestamp:
- Jan 31, 2012 8:45:46 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76004
- Location:
- trunk/src/libs/xpcom18a4/xpcom
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/components/nsComponentManager.cpp
r3175 r39926 1421 1421 1422 1422 PRFileDesc* fd = nsnull; 1423 nsresult rv = localFile->OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, 06 66, &fd);1423 nsresult rv = localFile->OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, 0600, &fd); 1424 1424 if (NS_FAILED(rv)) 1425 1425 return rv; -
trunk/src/libs/xpcom18a4/xpcom/io/nsLocalFileUnix.cpp
r1 r39926 590 590 if (!targetExists) { 591 591 // XXX create the new directory with some permissions 592 rv = newParent->Create(DIRECTORY_TYPE, 07 55);592 rv = newParent->Create(DIRECTORY_TYPE, 0700); 593 593 if (NS_FAILED(rv)) 594 594 return rv; -
trunk/src/libs/xpcom18a4/xpcom/obsolete/nsFileSpecUnix.cpp
r1 r39926 110 110 if (inMakeDirs) 111 111 { 112 const mode_t mode = 07 55;112 const mode_t mode = 0700; 113 113 nsFileSpecHelpers::MakeAllDirectories((const char*)ioPath, mode); 114 114 } -
trunk/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/xptiManifest.cpp
r32717 r39926 145 145 if(NS_FAILED(tempFile-> 146 146 OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, 147 06 66, &fd)) || !fd)147 0600, &fd)) || !fd) 148 148 { 149 149 goto out; -
trunk/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/xptiMisc.cpp
r1 r39926 86 86 OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE | PR_APPEND | 87 87 (append ? 0 : PR_TRUNCATE), 88 06 66, &fd)) && fd)88 0600, &fd)) && fd) 89 89 { 90 90 #ifdef DEBUG
Note:
See TracChangeset
for help on using the changeset viewer.