Changeset 70086 in vbox for trunk/src/VBox/HostServices/GuestProperties/testcase
- Timestamp:
- Dec 12, 2017 5:36:51 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/testcase/tstGuestPropSvc.cpp
r70063 r70086 120 120 if (RT_SUCCESS(rc)) 121 121 { 122 rc = GuestPropWriteFlags(fFlags, pszFlagBuffer );122 rc = GuestPropWriteFlags(fFlags, pszFlagBuffer, GUEST_PROP_MAX_FLAGS_LEN); 123 123 if (RT_FAILURE(rc)) 124 124 RTTestIFailed("Failed to convert flag string '%s' back to a string.", … … 159 159 RTTestISub("Rejection of an invalid flags field"); 160 160 /* This is required to fail. */ 161 if (RT_SUCCESS(GuestPropWriteFlags(u32BadFlags, pszFlagBuffer )))161 if (RT_SUCCESS(GuestPropWriteFlags(u32BadFlags, pszFlagBuffer, GUEST_PROP_MAX_FLAGS_LEN))) 162 162 { 163 163 RTTestIFailed("Flags 0x%x were incorrectly written out as '%.*s'\n", … … 828 828 { 829 829 char szFlags[GUEST_PROP_MAX_FLAGS_LEN]; 830 if (RT_FAILURE(GuestPropWriteFlags(fFlags, szFlags )))830 if (RT_FAILURE(GuestPropWriteFlags(fFlags, szFlags, sizeof(szFlags)))) 831 831 RTTestIFailed("Failed to set the global flags."); 832 832 else
Note:
See TracChangeset
for help on using the changeset viewer.