Changeset 14394 in vbox for trunk/src/VBox/Additions/WINNT/VBoxService/VBoxVMInfo.cpp
- Timestamp:
- Nov 20, 2008 10:42:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxVMInfo.cpp
r13462 r14394 51 51 } 52 52 53 rc = VbglR3GuestPropWriteValue(a_pCtx->iInfoSvcClientID, szKeyTemp, ( a_pszValue == NULL) ? NULL : pszValue);53 rc = VbglR3GuestPropWriteValue(a_pCtx->iInfoSvcClientID, szKeyTemp, ((a_pszValue == NULL) || (0 == strlen(a_pszValue))) ? NULL : pszValue); 54 54 if (!RT_SUCCESS(rc)) 55 55 { … … 58 58 } 59 59 60 if ( pszValue != NULL)60 if ((pszValue != NULL) && (strlen(a_pszValue) > 0)) 61 61 Log(("vboxVMInfoThread: Property written: %s = %s\n", szKeyTemp, pszValue)); 62 62 else
Note:
See TracChangeset
for help on using the changeset viewer.