Changeset 4699 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 11, 2007 11:27:25 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/log.cpp
r4071 r4699 194 194 *ppLogger = NULL; 195 195 196 if (pszErrorMsg) 197 RTStrPrintf(pszErrorMsg, cchErrorMsg, "unknown error"); 196 198 197 199 /* … … 421 423 } 422 424 else 425 { 426 #ifdef RT_OS_LINUX 427 /* 428 * RTMemAlloc() succeeded but RTMemExecAlloc() failed -- most probably an SELinux problem. 429 */ 430 if (pszErrorMsg) 431 RTStrPrintf(pszErrorMsg, cchErrorMsg, "mmap(PROT_WRITE | PROT_EXEC) failed -- SELinux?"); 432 #endif /* RT_OS_LINUX */ 423 433 rc = VERR_NO_MEMORY; 434 } 424 435 RTMemFree(pLogger); 425 436 }
Note:
See TracChangeset
for help on using the changeset viewer.