Changeset 45015 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Mar 13, 2013 12:40:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibSharedFolders.c
r44558 r45015 53 53 (a)->cParms = SHFL_CPARMS_##b 54 54 55 #ifndef RT_OS_WINDOWS56 # define RtlZeroMemory(a, b) memset (a, 0, b)57 #endif58 59 55 60 56 DECLVBGL(int) vboxInit (void) … … 73 69 DECLVBGL(int) vboxConnect (PVBSFCLIENT pClient) 74 70 { 75 int rc = VINF_SUCCESS; 76 71 int rc; 77 72 VBoxGuestHGCMConnectInfo data; 78 73 79 R tlZeroMemory (&data, sizeof (VBoxGuestHGCMConnectInfo));74 RT_ZERO(data); 80 75 81 76 pClient->handle = NULL; … … 112 107 return; /* not connected */ 113 108 114 R tlZeroMemory (&data, sizeof (VBoxGuestHGCMDisconnectInfo));109 RT_ZERO(data); 115 110 116 111 data.result = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.