Changeset 40361 in vbox
- Timestamp:
- Mar 5, 2012 4:25:09 PM (13 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r39242 r40361 1148 1148 /* Send out a host notification */ 1149 1149 if (RT_SUCCESS(rc)) 1150 rc = notifyHost(pszProperty, NULL, u64Timestamp, NULL);1150 rc = notifyHost(pszProperty, "", u64Timestamp, ""); 1151 1151 } 1152 1152 LogFlowThisFunc(("returning\n")); -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r40257 r40361 5352 5352 /** @todo r=bird: Why aren't we leaving the lock here? The 5353 5353 * same code in PushGuestProperty does... */ 5354 mParent->onGuestPropertyChange(mData->mUuid, aName, aValue, aFlags); 5354 mParent->onGuestPropertyChange(mData->mUuid, aName, 5355 aValue ? aValue : Bstr("").raw(), 5356 aFlags ? aFlags : Bstr("").raw()); 5355 5357 } 5356 5358 } … … 11919 11921 11920 11922 CheckComArgStrNotEmptyOrNull(aName); 11921 CheckComArg MaybeNull(aValue);11922 CheckComArg MaybeNull(aFlags);11923 CheckComArgNotNull(aValue); 11924 CheckComArgNotNull(aFlags); 11923 11925 11924 11926 try
Note:
See TracChangeset
for help on using the changeset viewer.