Changeset 36529 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
- Timestamp:
- Apr 4, 2011 1:54:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
r33540 r36529 31 31 #include <iprt/string.h> 32 32 #ifndef VBOX_VBGLR3_XFREE86 33 # include <iprt/ mem.h>33 # include <iprt/cpp/mem.h> 34 34 #endif 35 35 #include <iprt/assert.h> … … 607 607 { 608 608 /* Create the handle. */ 609 RT MemAutoPtr<VBGLR3GUESTPROPENUM, VbglR3GuestPropEnumFree> Handle;609 RTCMemAutoPtr<VBGLR3GUESTPROPENUM, VbglR3GuestPropEnumFree> Handle; 610 610 Handle = (PVBGLR3GUESTPROPENUM)RTMemAllocZ(sizeof(VBGLR3GUESTPROPENUM)); 611 611 if (!Handle) … … 618 618 619 619 /* Pack the pattern array */ 620 RT MemAutoPtr<char> Patterns;620 RTCMemAutoPtr<char> Patterns; 621 621 Patterns = (char *)RTMemAlloc(cchPatterns); 622 622 size_t off = 0; … … 632 632 * information. */ 633 633 uint32_t cchBuf = 4096; 634 RT MemAutoPtr<char> Buf;634 RTCMemAutoPtr<char> Buf; 635 635 636 636 /* In reading the guest property data we are racing against the host
Note:
See TracChangeset
for help on using the changeset viewer.