Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d6f46911
Commit
d6f46911
authored
Jul 24, 2008
by
John Reiser
Committed by
Alexandre Julliard
Jul 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: When tracking allocated blocks, RtlDestroyHeap must notify that all the…
ntdll: When tracking allocated blocks, RtlDestroyHeap must notify that all the blocks are being freed.
parent
0a2c94e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
heap.c
dlls/ntdll/heap.c
+29
-1
No files found.
dlls/ntdll/heap.c
View file @
d6f46911
...
...
@@ -193,13 +193,39 @@ static inline void notify_alloc( void *ptr, SIZE_T size, BOOL init )
}
/* notify that a block of memory has been freed for debugging purposes */
static
inline
void
notify_free
(
void
*
ptr
)
static
inline
void
notify_free
(
void
const
*
ptr
)
{
#ifdef VALGRIND_FREELIKE_BLOCK
VALGRIND_FREELIKE_BLOCK
(
ptr
,
0
);
#endif
}
static
void
subheap_notify_free_all
(
SUBHEAP
const
*
subheap
)
{
#ifdef VALGRIND_FREELIKE_BLOCK
char
const
*
ptr
=
(
char
const
*
)
subheap
->
base
+
subheap
->
headerSize
;
if
(
!
RUNNING_ON_VALGRIND
)
return
;
while
(
ptr
<
(
char
const
*
)
subheap
->
base
+
subheap
->
size
)
{
if
(
*
(
const
DWORD
*
)
ptr
&
ARENA_FLAG_FREE
)
{
ARENA_FREE
const
*
pArena
=
(
ARENA_FREE
const
*
)
ptr
;
if
(
pArena
->
magic
!=
ARENA_FREE_MAGIC
)
ERR
(
"bad free_magic @%p
\n
"
,
pArena
);
ptr
+=
sizeof
(
*
pArena
)
+
(
pArena
->
size
&
ARENA_SIZE_MASK
);
}
else
{
ARENA_INUSE
const
*
pArena
=
(
ARENA_INUSE
const
*
)
ptr
;
if
(
pArena
->
magic
!=
ARENA_INUSE_MAGIC
)
ERR
(
"bad inuse_magic @%p
\n
"
,
pArena
);
notify_free
(
pArena
+
1
);
ptr
+=
sizeof
(
*
pArena
)
+
(
pArena
->
size
&
ARENA_SIZE_MASK
);
}
}
#endif
}
/* locate a free list entry of the appropriate size */
/* size is the size of the whole block including the arena header */
static
inline
unsigned
int
get_freelist_index
(
SIZE_T
size
)
...
...
@@ -1148,11 +1174,13 @@ HANDLE WINAPI RtlDestroyHeap( HANDLE heap )
LIST_FOR_EACH_ENTRY_SAFE
(
subheap
,
next
,
&
heapPtr
->
subheap_list
,
SUBHEAP
,
entry
)
{
if
(
subheap
==
&
heapPtr
->
subheap
)
continue
;
/* do this one last */
subheap_notify_free_all
(
subheap
);
list_remove
(
&
subheap
->
entry
);
size
=
0
;
addr
=
subheap
->
base
;
NtFreeVirtualMemory
(
NtCurrentProcess
(),
&
addr
,
&
size
,
MEM_RELEASE
);
}
subheap_notify_free_all
(
&
heapPtr
->
subheap
);
size
=
0
;
addr
=
heapPtr
->
subheap
.
base
;
NtFreeVirtualMemory
(
NtCurrentProcess
(),
&
addr
,
&
size
,
MEM_RELEASE
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment