Changeset 32705 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Sep 23, 2010 7:06:34 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibSharedFolders.cpp
r31355 r32705 270 270 { 271 271 AssertPtrReturn(ppszPrefix, VERR_INVALID_POINTER); 272 272 int rc; 273 #ifdef VBOX_WITH_GUEST_PROPS 273 274 uint32_t u32ClientIdGuestProp; 274 intrc = VbglR3GuestPropConnect(&u32ClientIdGuestProp);275 rc = VbglR3GuestPropConnect(&u32ClientIdGuestProp); 275 276 if (RT_SUCCESS(rc)) 276 277 { … … 278 279 if (rc == VERR_NOT_FOUND) /* No prefix set? Then set the default. */ 279 280 { 281 #endif 280 282 if (RTStrAPrintf(ppszPrefix, "sf_")) 281 283 rc = VINF_SUCCESS; 284 else 285 rc = VERR_NO_MEMORY; 286 #ifdef VBOX_WITH_GUEST_PROPS 282 287 } 283 288 VbglR3GuestPropDisconnect(u32ClientIdGuestProp); 284 289 } 285 return rc; 286 } 290 #endif 291 return rc; 292 }
Note:
See TracChangeset
for help on using the changeset viewer.