Changeset 104644 in vbox
- Timestamp:
- May 15, 2024 6:06:33 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r103149 r104644 313 313 { 314 314 AssertPtr(pszValue); 315 g_uVMInfoUserIdleThresholdMS = RT_CLAMP(RTStrToUInt32(pszValue), 1000, UINT32_MAX - 1); 315 g_uVMInfoUserIdleThresholdMS = RTStrToUInt32(pszValue); 316 g_uVMInfoUserIdleThresholdMS = RT_CLAMP(g_uVMInfoUserIdleThresholdMS, 1000, UINT32_MAX - 1); 316 317 RTStrFree(pszValue); 317 318 }
Note:
See TracChangeset
for help on using the changeset viewer.