Changeset 70058 in vbox for trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
- Timestamp:
- Dec 11, 2017 3:02:07 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119600
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r69500 r70058 1189 1189 * of space here in case the maximum values are raised. */ 1190 1190 void *pvBuf = NULL; 1191 uint32_t cbBuf = MAX_VALUE_LEN +MAX_FLAGS_LEN + 1024;1191 uint32_t cbBuf = GUEST_PROP_MAX_VALUE_LEN + GUEST_PROP_MAX_FLAGS_LEN + 1024; 1192 1192 if (RT_SUCCESS(rc)) 1193 1193 { … … 1497 1497 * of space here in case the maximum values are raised. */ 1498 1498 void *pvBuf = NULL; 1499 uint32_t cbBuf = MAX_NAME_LEN + MAX_VALUE_LEN +MAX_FLAGS_LEN + 1024;1499 uint32_t cbBuf = GUEST_PROP_MAX_NAME_LEN + GUEST_PROP_MAX_VALUE_LEN + GUEST_PROP_MAX_FLAGS_LEN + 1024; 1500 1500 /* Because there is a race condition between our reading the size of a 1501 1501 * property and the guest updating it, we loop a few times here and
Note:
See TracChangeset
for help on using the changeset viewer.