Commit 7c4106aa authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ole32: Remove unused field.

parent 1039a775
...@@ -49,7 +49,6 @@ static const IMallocVtbl VT_IMalloc32; ...@@ -49,7 +49,6 @@ static const IMallocVtbl VT_IMalloc32;
typedef struct { typedef struct {
IMalloc IMalloc_iface; IMalloc IMalloc_iface;
DWORD dummy; /* nothing, we are static */
IMallocSpy * pSpy; /* the spy when active */ IMallocSpy * pSpy; /* the spy when active */
DWORD SpyedAllocationsLeft; /* number of spyed allocations left */ DWORD SpyedAllocationsLeft; /* number of spyed allocations left */
BOOL SpyReleasePending; /* CoRevokeMallocSpy called with spyed allocations left*/ BOOL SpyReleasePending; /* CoRevokeMallocSpy called with spyed allocations left*/
...@@ -58,7 +57,7 @@ typedef struct { ...@@ -58,7 +57,7 @@ typedef struct {
} _Malloc32; } _Malloc32;
/* this is the static object instance */ /* this is the static object instance */
static _Malloc32 Malloc32 = {{&VT_IMalloc32}, 0, NULL, 0, 0, NULL, 0}; static _Malloc32 Malloc32 = {{&VT_IMalloc32}, NULL, 0, 0, NULL, 0};
/* with a spy active all calls from pre to post methods are threadsafe */ /* with a spy active all calls from pre to post methods are threadsafe */
static CRITICAL_SECTION IMalloc32_SpyCS; static CRITICAL_SECTION IMalloc32_SpyCS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment