diff options
author | Gerald Carter <jerry@samba.org> | 2006-04-08 17:25:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:55 -0500 |
commit | bbf666e447132a5f6b206ddf9ca918298b756392 (patch) | |
tree | 3cac70deddd159edbd7fb3aece639c48e9a5e67e /source3/lib/talloc.c | |
parent | c9c502442b40aba97de17456ba948effcdfa3d05 (diff) | |
download | samba-bbf666e447132a5f6b206ddf9ca918298b756392.tar.gz samba-bbf666e447132a5f6b206ddf9ca918298b756392.tar.bz2 samba-bbf666e447132a5f6b206ddf9ca918298b756392.zip |
r15003: patch based on code from Arkady Glabek <aglabek@centeris.com> to ensure that global memory is freed when unloading pam_winbind.so (needs more testing on non-linux platforms)
(This used to be commit 1e0b79e591d70352a96e0a0487d8f394dc7b36ba)
Diffstat (limited to 'source3/lib/talloc.c')
-rw-r--r-- | source3/lib/talloc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c index ba189199d7..c111615506 100644 --- a/source3/lib/talloc.c +++ b/source3/lib/talloc.c @@ -883,6 +883,16 @@ static void talloc_report_null_full(void) } /* + free allocated global memory +*/ + +void talloc_nc_free(void) +{ + if ( null_context ) + talloc_free( (void*)null_context ); +} + +/* enable tracking of the NULL context */ void talloc_enable_null_tracking(void) |