- Timestamp:
- Jul 29, 2013 8:06:14 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r47336 r47449 256 256 { 257 257 AssertPtr(pszValue); 258 g_uVMInfoUserIdleThreshold = RT_CLAMP(RTStrTo Int32(pszValue), 1000, UINT32_MAX - 1);258 g_uVMInfoUserIdleThreshold = RT_CLAMP(RTStrToUInt32(pszValue), 1000, UINT32_MAX - 1); 259 259 RTStrFree(pszValue); 260 260 } … … 388 388 char *pszName; 389 389 if (pszDomain) 390 { 390 391 if (!RTStrAPrintf(&pszName, "%s%s@%s/%s", g_pszPropCacheValUser, pszUser, pszDomain, pszKey)) 391 392 rc = VERR_NO_MEMORY; 393 } 392 394 else 395 { 393 396 if (!RTStrAPrintf(&pszName, "%s%s/%s", g_pszPropCacheValUser, pszUser, pszKey)) 394 397 rc = VERR_NO_MEMORY; 398 } 395 399 396 400 char *pszValue = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.