Changeset 70068 in vbox
- Timestamp:
- Dec 11, 2017 5:28:02 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119612
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/pam/pam_vbox.cpp
r69500 r70068 53 53 #ifdef VBOX_WITH_GUEST_PROPS 54 54 # include <VBox/HostServices/GuestPropertySvc.h> 55 using namespace guestProp;56 55 #endif 57 56 … … 415 414 * of space here in case the maximum values are raised. */ 416 415 void *pvBuf = NULL; 417 uint32_t cbBuf = MAX_VALUE_LEN +MAX_FLAGS_LEN + _1K;416 uint32_t cbBuf = GUEST_PROP_MAX_VALUE_LEN + GUEST_PROP_MAX_FLAGS_LEN + _1K; 418 417 419 418 /* Because there is a race condition between our reading the size of a … … 517 516 * of space here in case the maximum values are raised. */ 518 517 void *pvBuf = NULL; 519 uint32_t cbBuf = MAX_NAME_LEN + MAX_VALUE_LEN +MAX_FLAGS_LEN + _1K;518 uint32_t cbBuf = GUEST_PROP_MAX_NAME_LEN + GUEST_PROP_MAX_VALUE_LEN + GUEST_PROP_MAX_FLAGS_LEN + _1K; 520 519 521 520 for (int i = 0; i < 10; i++)
Note:
See TracChangeset
for help on using the changeset viewer.