Winibndd's increasing RSS memory issue.

Ravindra Channabasappa ravindra at juniper.net
Wed Jun 11 01:14:39 MDT 2014


Thanks Volker for the explanation. 'use mmap=no' would not be a good option for us as we are trying to get more performance from Winbindd.

This increase in memory is one of reasons that I was trying to suggest for 'cleanup of winbindd processes in case they are idle'.
https://lists.samba.org/archive/samba-technical/2014-April/099268.html

I encountered some problems (PANIC issues) while load testing the patch and halted. Will have a relook on the same again.

Thanks,
--ravindra

>-----Original Message-----
>From: Volker Lendecke [mailto:Volker.Lendecke at SerNet.DE]
>Sent: Friday, June 06, 2014 12:39 PM
>To: Ravindra Channabasappa
>Cc: Jeremy Allison; mat at samba.org; samba-technical at lists.samba.org
>Subject: Re: Winibndd's increasing RSS memory issue.
>
>On Fri, Jun 06, 2014 at 04:01:27AM +0000, Ravindra Channabasappa wrote:
>> Starting a new thread about winibndd's increasing RSS memory issue. This
>issue was partially discussed in another thread-
>> https://lists.samba.org/archive/samba-technical/2014-April/099268.html
>>
>>
>> We have Samba-4.1.3 with MIT Kerberos and external keytab is being used.
>>
>> Before the performance test (of 10K user login) is run the winbindd process
>memory statistics shows:
>> **********
>> bash-4.1# ps -eo pid,ppid,pcpu,pmem,vsz,rss,command | grep winbindd
>>
>> 27033 26799  0.0  0.2  29228 12084 /sbin/winbindd --interactive --stdout --
>configfile=/etc/samba/7.conf --log-basename=/home/runtime
>> 27059 27033  0.0  0.1  29452  5616 /sbin/winbindd --interactive --stdout --
>configfile=/etc/samba/7.conf --log-basename=/home/runtime
>> **********
>>
>> VSZ and RSS size - (29452  5616)
>>
>>
>> But once test with 10K users is completed, the VSZ and RSS increase to
>(31892 14408) and never come down.
>> **********
>> bash-4.1# ps -eo pid,ppid,pcpu,pmem,vsz,rss,command | grep winbindd
>> 27033 26799  0.0  0.2  29228 12112 /sbin/winbindd --interactive --stdout --
>configfile=/etc/samba/7.conf --log-basename=/home/runtime
>> 27059 27033  0.5  0.3  31892 14408 /sbin/winbindd --interactive --stdout --
>configfile=/etc/samba/7.conf --log-basename=/home/runtime
>> **********
>>
>> As discussed/suggested in another mail thread I ran valgrind and found that
>there is hardly any leak in the memory (max 40 bytes).
>> valgrind output of winbindd is attached. Note, valgrind output is of another
>instance of the run with different pids.
>>
>> In the above run, RSS size increases from ~5 MB to ~14M.
>> >From the SMAP output of the process, I see that winbindd_cache.tdb and
>netsamlogon_cache.tdb are majorly contributing to RSS size increase.
>> This is expected as the number of logged in users have increased.
>>
>> But the problem is RSS size does not seem to come down. Isn't  it a problem
>for long living winbindd processes?
>>
>> Files attached:
>
>The biggest contributors of the increased memory use are
>indeed the two cache tdbs. The default implementation of tdb
>mmap's the complete files, which then contribute to the
>memory use of each process. Those are disk-backed files, so
>under memory pressure the kernel will be able to swap them
>out without using any swap space.
>
>You're right, this footprint will never shrink, because tdb
>files never shrink, and we always mmap the complete files.
>But I would hope that even the slightest memory pressure
>would make the kernel unmap unused pages from those tdb
>files. Please note that you might be able to use modern
>tdbtool to "repack" the tdb files on the fly. This will
>compact the memory layout, essentially coalescing tdb free
>space.
>
>Hmm. Just thinking -- the cache tdbs will have very few free
>records. In particular in the netsamlogon cache we never
>delete anything, so free space will be minimal. The
>netsamlogon cache is vital for correct operation, but you
>might think about evicting really old entries from that (not
>possible with current code though, we don't have timestamps
>there) and then doing a "repack". Feel free to contact us
>directly if you want this code to be done.
>
>I would not count this memory use as worrying, it is up to
>the kernel to decide.
>
>If you really want to avoid this, Samba offers the option
>
>use mmap = no
>
>to use pread/pwrite calls to access tdbs, not a direct
>memory map. Please be aware that this trades performance for
>memory, pread/pwrite are significantly slower than direct
>mmap access.
>
>With best regards,
>
>Volker Lendecke
>
>>
>>
>> Thanks,
>> --ravindra
>>
>>
>>
>>
>
>> ==13381== Memcheck, a memory error detector
>> ==13381== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
>> ==13381== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
>> ==13381== Command: /sbin/winbindd --configfile=/etc/samba/7.conf --log-
>basename=/home/runtime
>> ==13381== Parent PID: 13188
>> ==13381==
>> ==13381== Use of uninitialised value of size 4
>> ==13381==    at 0x4888018: seed_random_stream (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x48885D7: do_reseed (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x48886CF: generate_random_buffer (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x5346C26: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== Use of uninitialised value of size 4
>> ==13381==    at 0x488802F: seed_random_stream (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x48885D7: do_reseed (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x48886CF: generate_random_buffer (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x5346C26: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== Invalid free() / delete / delete[] / realloc()
>> ==13381==    at 0x4826C7F: free (vg_replace_malloc.c:446)
>> ==13381==    by 0x55B6343: free_mem (in /lib/libc.so.6)
>> ==13381==    by 0x55B5E09: __libc_freeres (in /lib/libc.so.6)
>> ==13381==    by 0x48214D1: _vgnU_freeres (vg_preloaded.c:62)
>> ==13381==    by 0x5516B83: _Exit (in /lib/libc.so.6)
>> ==13381==    by 0x12F988: main (in /sbin/winbindd)
>> ==13381==  Address 0x58026d8 is not stack'd, malloc'd or (recently) free'd
>> ==13381==
>> ==13381==
>> ==13381== HEAP SUMMARY:
>> ==13381==     in use at exit: 13,240 bytes in 153 blocks
>> ==13381==   total heap usage: 436 allocs, 284 frees, 58,058 bytes allocated
>> ==13381==
>> ==13381== 13 bytes in 1 blocks are definitely lost in loss record 26 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13381==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530E755: handle_realm (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13381==
>> ==13381== 13 bytes in 1 blocks are definitely lost in loss record 27 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13381==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530E77B: handle_realm (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13381==
>> ==13381== 14 bytes in 1 blocks are definitely lost in loss record 29 of 120
>> ==13381==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13381==    by 0x5430817: expandNextArg (popt.c:613)
>> ==13381==    by 0x5431061: poptGetNextOpt (popt.c:871)
>> ==13381==    by 0x12F310: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 48 bytes in 1 blocks are possibly lost in loss record 48 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D4BF: talloc_enable_null_tracking (in
>/lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x12F0AC: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 48 bytes in 1 blocks are possibly lost in loss record 49 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12F0BA: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 48 bytes in 1 blocks are possibly lost in loss record 50 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495E028: talloc_autofree_context (in
>/lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489C676: get_iconv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489E4AF: strchr_m (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x52F99C5: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F122: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 48 bytes in 1 blocks are possibly lost in loss record 51 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x53047C1: init_globals (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 48 bytes in 1 blocks are possibly lost in loss record 52 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489C8DB: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 49 bytes in 1 blocks are possibly lost in loss record 53 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F937F: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F122: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 49 bytes in 1 blocks are possibly lost in loss record 54 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F937F: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F5BD: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 49 bytes in 1 blocks are possibly lost in loss record 55 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F937F: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3698: reopen_logs (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF21: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 49 bytes in 1 blocks are possibly lost in loss record 56 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F937F: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3698: reopen_logs (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF36: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 52 bytes in 1 blocks are possibly lost in loss record 58 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 52 bytes in 1 blocks are possibly lost in loss record 59 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13381==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13381==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 54 bytes in 1 blocks are possibly lost in loss record 60 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489C9AC: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 54 bytes in 1 blocks are possibly lost in loss record 61 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489C9C6: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 56 bytes in 1 blocks are possibly lost in loss record 62 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EB458: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 57 bytes in 1 blocks are possibly lost in loss record 63 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F8760: set_remote_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13381==    by 0x12F154: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 57 bytes in 1 blocks are possibly lost in loss record 64 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13381==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 60 bytes in 1 blocks are possibly lost in loss record 65 of 120
>> ==13381==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13381==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x4882A35: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x56BBE82: dbwrap_fetch_locked_internal (in
>/lib/libdbwrap.so)
>> ==13381==    by 0x56BBF8D: dbwrap_fetch_locked (in /lib/libdbwrap.so)
>> ==13381==    by 0x56BCD2B: dbwrap_change_int32_atomic_action (in
>/lib/libdbwrap.so)
>> ==13381==    by 0x56BD63D: dbwrap_trans_do (in /lib/libdbwrap.so)
>> ==13381==    by 0x56BCF9A: dbwrap_trans_change_int32_atomic_bystring
>(in /lib/libdbwrap.so)
>> ==13381==    by 0x5346A77: get_rand_seed (in /lib/libsecrets3.so)
>> ==13381==    by 0x4887F8B: get_rand_reseed_data (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==
>> ==13381== 60 bytes in 1 blocks are possibly lost in loss record 66 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 63 bytes in 1 blocks are possibly lost in loss record 67 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F859E: set_local_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13381==    by 0x53172DF: init_names (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F840: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 68 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E84CB: tevent_select_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5663: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 69 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E9D79: tevent_poll_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5668: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 70 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E9DA9: tevent_poll_mt_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E566D: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 71 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48EDFB3: tevent_epoll_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5672: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 72 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48EB2C3: tevent_standard_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5677: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 73 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EB06F: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 74 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EB54F: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 75 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 76 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 64 bytes in 1 blocks are possibly lost in loss record 77 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13381==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13381==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 78 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAC48: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 79 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52FB1A3: register_msg_pool_usage (in
>/lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAC56: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 80 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52FB313: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 81 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52FB342: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 82 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F39EE: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 83 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3A1D: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 68 bytes in 1 blocks are possibly lost in loss record 84 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13381==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13381==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 70 bytes in 1 blocks are possibly lost in loss record 85 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489F59A: strupper_talloc_n_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x489F6DE: strupper_talloc_n (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489F724: strupper_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x52E37C3: myhostname_upper (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53048FA: init_globals (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F539: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 72 bytes in 1 blocks are possibly lost in loss record 86 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48ED9F2: epoll_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48EB1D7: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 75 bytes in 1 blocks are possibly lost in loss record 87 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489025D: debug_set_logfile (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x5314D73: lp_set_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x4875B02: set_logfile (in /lib/libpopt_samba3.so)
>> ==13381==    by 0x4875DBC: popt_common_callback (in
>/lib/libpopt_samba3.so)
>> ==13381==    by 0x542FE4C: invokeCallbacksOPTION (popt.c:151)
>> ==13381==    by 0x542FE90: invokeCallbacksOPTION (popt.c:133)
>> ==13381==    by 0x5430D2D: poptGetNextOpt (popt.c:990)
>> ==13381==    by 0x12F310: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 75 bytes in 1 blocks are possibly lost in loss record 88 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52F937F: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F333: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 81 bytes in 1 blocks are possibly lost in loss record 89 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13381==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13381==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 84 bytes in 1 blocks are possibly lost in loss record 90 of 120
>> ==13381==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13381==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DCC4: __talloc_vaslenprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DD83: talloc_vasprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DE3C: talloc_asprintf_append (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52E3926: xx_path (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52E3952: lock_path (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EB5F8: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 84 bytes in 1 blocks are possibly lost in loss record 91 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13381==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 88 bytes in 1 blocks are possibly lost in loss record 92 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EB0DA: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 88 bytes in 1 blocks are possibly lost in loss record 93 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x52EAB0E: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 88 bytes in 1 blocks are possibly lost in loss record 94 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 100 bytes in 1 blocks are possibly lost in loss record 95 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48EA530: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==
>> ==13381== 104 bytes in 2 blocks are possibly lost in loss record 98 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13381==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 107 bytes in 2 blocks are possibly lost in loss record 100 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13381==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13381==
>> ==13381== 116 bytes in 1 blocks are possibly lost in loss record 101 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13381==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 116 bytes in 1 blocks are possibly lost in loss record 102 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13381==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13381==    by 0x12F682: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 116 bytes in 1 blocks are possibly lost in loss record 103 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13381==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13381==
>> ==13381== 120 bytes in 1 blocks are possibly lost in loss record 104 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48E5BC2: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13381==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 132 bytes in 1 blocks are possibly lost in loss record 107 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13381==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13381==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13381==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13381==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 140 bytes in 1 blocks are possibly lost in loss record 108 of 120
>> ==13381==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13381==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x488FB3A: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 140 bytes in 1 blocks are possibly lost in loss record 109 of 120
>> ==13381==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13381==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x488FBA2: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 188 bytes in 1 blocks are possibly lost in loss record 111 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 264 bytes in 1 blocks are possibly lost in loss record 112 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489C8AB: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13381==    by 0x489C6A2: get_iconv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489E4AF: strchr_m (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x52F99C5: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F122: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 304 bytes in 1 blocks are possibly lost in loss record 113 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F134: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 304 bytes in 1 blocks are possibly lost in loss record 114 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F345: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 304 bytes in 1 blocks are possibly lost in loss record 115 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12F5CF: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 1,072 bytes in 1 blocks are possibly lost in loss record 117 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x489011B: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 1,254 bytes in 23 blocks are possibly lost in loss record 119 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x488FBDF: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13381==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== 1,988 bytes in 1 blocks are possibly lost in loss record 120 of 120
>> ==13381==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13381==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13381==    by 0x48EA343: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13381==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13381==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13381==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13381==    by 0x12F666: main (in /sbin/winbindd)
>> ==13381==
>> ==13381== LEAK SUMMARY:
>> ==13381==    definitely lost: 40 bytes in 3 blocks
>> ==13381==    indirectly lost: 0 bytes in 0 blocks
>> ==13381==      possibly lost: 9,791 bytes in 88 blocks
>> ==13381==    still reachable: 3,409 bytes in 62 blocks
>> ==13381==         suppressed: 0 bytes in 0 blocks
>> ==13381== Reachable blocks (those to which a pointer was found) are not
>shown.
>> ==13381== To see them, rerun with: --leak-check=full --show-
>reachable=yes
>> ==13381==
>> ==13381== For counts of detected and suppressed errors, rerun with: -v
>> ==13381== Use --track-origins=yes to see where uninitialised values come
>from
>> ==13381== ERROR SUMMARY: 580 errors from 70 contexts (suppressed: 201
>from 8)
>> ==13384== Use of uninitialised value of size 4
>> ==13384==    at 0x4888018: seed_random_stream (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x48885D7: do_reseed (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x48886CF: generate_random_buffer (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x488882F: generate_random (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488F770: idr_get_new_random (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x56DFEA3: cldap_search_send (in /lib/libcli_cldap.so)
>> ==13384==    by 0x56E0FA8: cldap_netlogon_send (in /lib/libcli_cldap.so)
>> ==13384==    by 0x4E1291E: cldap_multi_netlogon_send (in /lib/libgse.so)
>> ==13384==    by 0x4E12FC0: cldap_multi_netlogon (in /lib/libgse.so)
>> ==13384==    by 0x4E13240: ads_cldap_netlogon (in /lib/libgse.so)
>> ==13384==    by 0x4E133C5: ads_cldap_netlogon_5 (in /lib/libgse.so)
>> ==13384==    by 0x49213B5: ads_try_connect (in /lib/libads.so)
>> ==13384==
>> ==13384== Use of uninitialised value of size 4
>> ==13384==    at 0x488802F: seed_random_stream (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x48885D7: do_reseed (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x48886CF: generate_random_buffer (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x488882F: generate_random (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488F770: idr_get_new_random (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x56DFEA3: cldap_search_send (in /lib/libcli_cldap.so)
>> ==13384==    by 0x56E0FA8: cldap_netlogon_send (in /lib/libcli_cldap.so)
>> ==13384==    by 0x4E1291E: cldap_multi_netlogon_send (in /lib/libgse.so)
>> ==13384==    by 0x4E12FC0: cldap_multi_netlogon (in /lib/libgse.so)
>> ==13384==    by 0x4E13240: ads_cldap_netlogon (in /lib/libgse.so)
>> ==13384==    by 0x4E133C5: ads_cldap_netlogon_5 (in /lib/libgse.so)
>> ==13384==    by 0x49213B5: ads_try_connect (in /lib/libads.so)
>> ==13384==
>> ==13384== Invalid free() / delete / delete[] / realloc()
>> ==13384==    at 0x4826C7F: free (vg_replace_malloc.c:446)
>> ==13384==    by 0x55B6343: free_mem (in /lib/libc.so.6)
>> ==13384==    by 0x55B5E09: __libc_freeres (in /lib/libc.so.6)
>> ==13384==    by 0x48214D1: _vgnU_freeres (vg_preloaded.c:62)
>> ==13384==    by 0x5516B83: _Exit (in /lib/libc.so.6)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13384==  Address 0x58026d8 is not stack'd, malloc'd or (recently) free'd
>> ==13384==
>> ==13384==
>> ==13384== HEAP SUMMARY:
>> ==13384==     in use at exit: 34,001 bytes in 287 blocks
>> ==13384==   total heap usage: 1,588 allocs, 1,302 frees, 272,735 bytes
>allocated
>> ==13384==
>> ==13384== 13 bytes in 1 blocks are definitely lost in loss record 31 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13384==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x530E755: handle_realm (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13384==
>> ==13384== 13 bytes in 1 blocks are definitely lost in loss record 32 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13384==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x530E77B: handle_realm (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13384==
>> ==13384== 14 bytes in 1 blocks are definitely lost in loss record 34 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x5430817: expandNextArg (popt.c:613)
>> ==13384==    by 0x5431061: poptGetNextOpt (popt.c:871)
>> ==13384==    by 0x12F310: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 29 bytes in 1 blocks are possibly lost in loss record 51 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13384==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13384==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 30 bytes in 1 blocks are possibly lost in loss record 52 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13384==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13384==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 36 bytes in 1 blocks are possibly lost in loss record 60 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13384==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13384==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 48 bytes in 1 blocks are possibly lost in loss record 64 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D4BF: talloc_enable_null_tracking (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x12F0AC: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 48 bytes in 1 blocks are possibly lost in loss record 65 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495E028: talloc_autofree_context (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489C676: get_iconv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489E4AF: strchr_m (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x52F99C5: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F122: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 48 bytes in 1 blocks are possibly lost in loss record 66 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x53047C1: init_globals (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 48 bytes in 1 blocks are possibly lost in loss record 67 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489C8DB: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 48 bytes in 1 blocks are possibly lost in loss record 68 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12FC9E: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 48 bytes in 1 blocks are possibly lost in loss record 69 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C345: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x14ACDC: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 49 bytes in 1 blocks are possibly lost in loss record 70 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 49 bytes in 1 blocks are possibly lost in loss record 71 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 52 bytes in 1 blocks are possibly lost in loss record 73 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13384==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13384==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 52 bytes in 1 blocks are possibly lost in loss record 74 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 52 bytes in 1 blocks are possibly lost in loss record 75 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EFC6E: addrchange_context_create (in
>/lib/libsmbconf.so.0)
>> ==13384==    by 0x12E9E3: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 52 bytes in 1 blocks are possibly lost in loss record 76 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 54 bytes in 1 blocks are possibly lost in loss record 77 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489C9AC: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 54 bytes in 1 blocks are possibly lost in loss record 78 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489C9C6: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 55 bytes in 1 blocks are possibly lost in loss record 79 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48BB9FB: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 55 bytes in 1 blocks are possibly lost in loss record 80 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x5664278: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13384==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 81 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 82 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 83 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 84 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 85 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13384==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 86 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13384==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 87 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48BB903: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 88 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x12E19B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13384==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 89 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x12E296: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13384==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 56 bytes in 1 blocks are possibly lost in loss record 90 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EB458: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 57 bytes in 1 blocks are possibly lost in loss record 91 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52F8760: set_remote_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13384==    by 0x12F154: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 57 bytes in 1 blocks are possibly lost in loss record 92 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13384==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 57 bytes in 1 blocks are possibly lost in loss record 93 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 94 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4882A35: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x56BBE82: dbwrap_fetch_locked_internal (in
>/lib/libdbwrap.so)
>> ==13384==    by 0x56BBF8D: dbwrap_fetch_locked (in /lib/libdbwrap.so)
>> ==13384==    by 0x56BCD2B: dbwrap_change_int32_atomic_action (in
>/lib/libdbwrap.so)
>> ==13384==    by 0x56BD63D: dbwrap_trans_do (in /lib/libdbwrap.so)
>> ==13384==    by 0x56BCF9A: dbwrap_trans_change_int32_atomic_bystring
>(in /lib/libdbwrap.so)
>> ==13384==    by 0x5346A77: get_rand_seed (in /lib/libsecrets3.so)
>> ==13384==    by 0x4887F8B: get_rand_reseed_data (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 95 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 96 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 97 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 98 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 99 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 100 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 101 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x12E94C: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 102 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 103 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 104 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 105 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 60 bytes in 1 blocks are possibly lost in loss record 106 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 61 bytes in 1 blocks are possibly lost in loss record 107 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x130824: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 61 bytes in 1 blocks are possibly lost in loss record 108 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x56642D7: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13384==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 62 bytes in 1 blocks are possibly lost in loss record 109 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 62 bytes in 1 blocks are possibly lost in loss record 110 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 62 bytes in 1 blocks are possibly lost in loss record 111 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 62 bytes in 1 blocks are possibly lost in loss record 112 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13384==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 62 bytes in 1 blocks are possibly lost in loss record 113 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13384==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 63 bytes in 1 blocks are possibly lost in loss record 114 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52F859E: set_local_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13384==    by 0x53172DF: init_names (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F840: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 63 bytes in 1 blocks are possibly lost in loss record 115 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 116 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E84CB: tevent_select_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5663: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 117 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E9D79: tevent_poll_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5668: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 118 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E9DA9: tevent_poll_mt_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E566D: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 119 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDFB3: tevent_epoll_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5672: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 120 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EB2C3: tevent_standard_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5677: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 121 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EB06F: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 122 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13384==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13384==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 123 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 124 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 125 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 126 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 127 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 128 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 129 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 130 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48BB875: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 131 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EB54F: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 132 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 133 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 134 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 135 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 136 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 64 bytes in 1 blocks are possibly lost in loss record 137 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 139 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAC48: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 140 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FB1A3: register_msg_pool_usage (in
>/lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAC56: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 141 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FB313: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 142 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FB342: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 143 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3A1D: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 144 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13384==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13384==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 145 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 146 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E738: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 147 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E796: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 148 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48BB96F: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 68 bytes in 1 blocks are possibly lost in loss record 149 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x536817E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13384==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 70 bytes in 1 blocks are possibly lost in loss record 150 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489F59A: strupper_talloc_n_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x489F6DE: strupper_talloc_n (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489F724: strupper_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x52E37C3: myhostname_upper (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x53048FA: init_globals (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F539: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 70 bytes in 1 blocks are possibly lost in loss record 151 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C37C: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x14ACDC: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 152 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 153 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 154 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 155 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 156 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 157 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 158 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13384==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 159 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13384==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 160 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13384==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 161 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13384==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13384==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13384==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 72 bytes in 1 blocks are possibly lost in loss record 162 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48ED9F2: epoll_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EB1D7: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6502: tevent_re_initialise (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52E1A9E: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 75 bytes in 1 blocks are possibly lost in loss record 163 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489025D: debug_set_logfile (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x5314D73: lp_set_logfile (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x4875B02: set_logfile (in /lib/libpopt_samba3.so)
>> ==13384==    by 0x4875DBC: popt_common_callback (in
>/lib/libpopt_samba3.so)
>> ==13384==    by 0x542FE4C: invokeCallbacksOPTION (popt.c:151)
>> ==13384==    by 0x542FE90: invokeCallbacksOPTION (popt.c:133)
>> ==13384==    by 0x5430D2D: poptGetNextOpt (popt.c:990)
>> ==13384==    by 0x12F310: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 76 bytes in 1 blocks are possibly lost in loss record 164 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13384==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 80 bytes in 1 blocks are possibly lost in loss record 165 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48BB83B: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 81 bytes in 1 blocks are possibly lost in loss record 166 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13384==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13384==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 84 bytes in 1 blocks are possibly lost in loss record 167 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==
>> ==13384== 84 bytes in 1 blocks are possibly lost in loss record 168 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DCC4: __talloc_vaslenprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DD83: talloc_vasprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DE3C: talloc_asprintf_append (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52E3926: xx_path (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E3952: lock_path (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EB5F8: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==
>> ==13384== 84 bytes in 1 blocks are possibly lost in loss record 169 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13384==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==
>> ==13384== 84 bytes in 1 blocks are possibly lost in loss record 170 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DCC4: __talloc_vaslenprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DD83: talloc_vasprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DE3C: talloc_asprintf_append (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52E3926: xx_path (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E39AA: cache_path (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FBC99: gencache_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FC8FF: gencache_parse (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FCA87: gencache_get_data_blob (in
>/lib/libsmbconf.so.0)
>> ==13384==    by 0x52FD1C9: gencache_get (in /lib/libsmbconf.so.0)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 172 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EB0DA: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 173 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52EAB0E: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 174 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 175 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 176 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 177 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 178 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 179 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 180 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 181 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 182 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13384==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 183 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EB711: tevent_common_add_timer_internal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EB9BB: tevent_common_add_timer_v2 (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5EDB: _tevent_add_timer (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x14BC4C: set_domain_online_request (in /sbin/winbindd)
>> ==13384==    by 0x131A74: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 184 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13384==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 185 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13384==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13384==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 186 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 187 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13384==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 188 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 189 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 190 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 191 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 88 bytes in 1 blocks are possibly lost in loss record 192 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 92 bytes in 1 blocks are possibly lost in loss record 193 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 92 bytes in 1 blocks are possibly lost in loss record 194 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 92 bytes in 1 blocks are possibly lost in loss record 195 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 92 bytes in 1 blocks are possibly lost in loss record 196 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DCC4: __talloc_vaslenprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DD83: talloc_vasprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DE3C: talloc_asprintf_append (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x52E3926: xx_path (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E3952: lock_path (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FBECC: gencache_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FC8FF: gencache_parse (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52FCA87: gencache_get_data_blob (in
>/lib/libsmbconf.so.0)
>> ==13384==    by 0x52FD1C9: gencache_get (in /lib/libsmbconf.so.0)
>> ==13384==
>> ==13384== 100 bytes in 1 blocks are possibly lost in loss record 197 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EA530: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==
>> ==13384== 100 bytes in 1 blocks are possibly lost in loss record 198 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x535B319: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13384==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 100 bytes in 1 blocks are possibly lost in loss record 199 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12E250: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13384==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 100 bytes in 1 blocks are possibly lost in loss record 200 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12E34B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13384==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 100 bytes in 1 blocks are possibly lost in loss record 201 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52E1B05: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 104 bytes in 2 blocks are possibly lost in loss record 204 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13384==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 107 bytes in 2 blocks are possibly lost in loss record 206 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13384==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13384==
>> ==13384== 108 bytes in 1 blocks are possibly lost in loss record 207 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 108 bytes in 1 blocks are possibly lost in loss record 208 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13384==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 116 bytes in 1 blocks are possibly lost in loss record 209 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13384==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 116 bytes in 1 blocks are possibly lost in loss record 210 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13384==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13384==    by 0x12F682: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 116 bytes in 1 blocks are possibly lost in loss record 211 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13384==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13384==
>> ==13384== 116 bytes in 1 blocks are possibly lost in loss record 212 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4D361E3: add_sid_to_array (in /lib/libsamba-security.so)
>> ==13384==    by 0x4D362C8: add_sid_to_array_unique (in /lib/libsamba-
>security.so)
>> ==13384==    by 0x48BD037: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 116 bytes in 1 blocks are possibly lost in loss record 213 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x536822E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13384==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 120 bytes in 1 blocks are possibly lost in loss record 214 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E5BC2: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13384==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 132 bytes in 1 blocks are possibly lost in loss record 222 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13384==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13384==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 132 bytes in 1 blocks are possibly lost in loss record 223 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13384==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13384==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 140 bytes in 1 blocks are possibly lost in loss record 224 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x488FB3A: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 140 bytes in 1 blocks are possibly lost in loss record 225 of 254
>> ==13384==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13384==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x488FBA2: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 140 bytes in 1 blocks are possibly lost in loss record 226 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x566423D: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13384==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13384==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13384==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13384==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 228 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 229 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 230 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 231 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 232 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 233 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 234 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 235 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 236 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 237 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 238 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 239 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 188 bytes in 1 blocks are possibly lost in loss record 240 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13384==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 264 bytes in 1 blocks are possibly lost in loss record 241 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489C8AB: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13384==    by 0x489C6A2: get_iconv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489E4AF: strchr_m (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x52F99C5: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F122: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 304 bytes in 1 blocks are possibly lost in loss record 242 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F134: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 304 bytes in 1 blocks are possibly lost in loss record 243 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F345: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 304 bytes in 1 blocks are possibly lost in loss record 244 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12F5CF: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 428 bytes in 1 blocks are possibly lost in loss record 245 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 428 bytes in 1 blocks are possibly lost in loss record 246 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 428 bytes in 1 blocks are possibly lost in loss record 247 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13384==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13384==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13384==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 432 bytes in 1 blocks are possibly lost in loss record 248 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x14D517: add_one_dc_unique (in /sbin/winbindd)
>> ==13384==    by 0x14DE74: get_dcs (in /sbin/winbindd)
>> ==13384==    by 0x14ADE7: fork_child_dc_connect (in /sbin/winbindd)
>> ==13384==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13384==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13384==
>> ==13384== 1,072 bytes in 1 blocks are possibly lost in loss record 250 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x489011B: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 1,254 bytes in 23 blocks are possibly lost in loss record 252 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x488FBDF: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13384==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 1,988 bytes in 1 blocks are possibly lost in loss record 253 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48EA343: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13384==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13384==    by 0x12F666: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== 8,512 bytes in 1 blocks are possibly lost in loss record 254 of 254
>> ==13384==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13384==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13384==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13384==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13384==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13384==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13384==
>> ==13384== LEAK SUMMARY:
>> ==13384==    definitely lost: 40 bytes in 3 blocks
>> ==13384==    indirectly lost: 0 bytes in 0 blocks
>> ==13384==      possibly lost: 29,401 bytes in 202 blocks
>> ==13384==    still reachable: 4,560 bytes in 82 blocks
>> ==13384==         suppressed: 0 bytes in 0 blocks
>> ==13384== Reachable blocks (those to which a pointer was found) are not
>shown.
>> ==13384== To see them, rerun with: --leak-check=full --show-
>reachable=yes
>> ==13384==
>> ==13384== For counts of detected and suppressed errors, rerun with: -v
>> ==13384== Use --track-origins=yes to see where uninitialised values come
>from
>> ==13384== ERROR SUMMARY: 1206 errors from 186 contexts (suppressed:
>201 from 8)
>> ==13382== Use of uninitialised value of size 4
>> ==13382==    at 0x4888018: seed_random_stream (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x48885D7: do_reseed (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x48886CF: generate_random_buffer (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x488882F: generate_random (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488F770: idr_get_new_random (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x56DFEA3: cldap_search_send (in /lib/libcli_cldap.so)
>> ==13382==    by 0x56E0FA8: cldap_netlogon_send (in /lib/libcli_cldap.so)
>> ==13382==    by 0x4E1291E: cldap_multi_netlogon_send (in /lib/libgse.so)
>> ==13382==    by 0x4E12FC0: cldap_multi_netlogon (in /lib/libgse.so)
>> ==13382==    by 0x4E13240: ads_cldap_netlogon (in /lib/libgse.so)
>> ==13382==    by 0x4E133C5: ads_cldap_netlogon_5 (in /lib/libgse.so)
>> ==13382==    by 0x49213B5: ads_try_connect (in /lib/libads.so)
>> ==13382==
>> ==13382== Use of uninitialised value of size 4
>> ==13382==    at 0x488802F: seed_random_stream (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x48885D7: do_reseed (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x48886CF: generate_random_buffer (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x488882F: generate_random (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488F770: idr_get_new_random (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x56DFEA3: cldap_search_send (in /lib/libcli_cldap.so)
>> ==13382==    by 0x56E0FA8: cldap_netlogon_send (in /lib/libcli_cldap.so)
>> ==13382==    by 0x4E1291E: cldap_multi_netlogon_send (in /lib/libgse.so)
>> ==13382==    by 0x4E12FC0: cldap_multi_netlogon (in /lib/libgse.so)
>> ==13382==    by 0x4E13240: ads_cldap_netlogon (in /lib/libgse.so)
>> ==13382==    by 0x4E133C5: ads_cldap_netlogon_5 (in /lib/libgse.so)
>> ==13382==    by 0x49213B5: ads_try_connect (in /lib/libads.so)
>> ==13382==
>> ==13470== Invalid free() / delete / delete[] / realloc()
>> ==13470==    at 0x4826C7F: free (vg_replace_malloc.c:446)
>> ==13470==    by 0x55B6343: free_mem (in /lib/libc.so.6)
>> ==13470==    by 0x55B5E09: __libc_freeres (in /lib/libc.so.6)
>> ==13470==    by 0x48214D1: _vgnU_freeres (vg_preloaded.c:62)
>> ==13470==    by 0x5516B83: _Exit (in /lib/libc.so.6)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x164663: fork_domain_child (in /sbin/winbindd)
>> ==13470==  Address 0x58026d8 is not stack'd, malloc'd or (recently) free'd
>> ==13470==
>> ==13470==
>> ==13470== HEAP SUMMARY:
>> ==13470==     in use at exit: 156,527 bytes in 568 blocks
>> ==13470==   total heap usage: 13,012 allocs, 12,445 frees, 1,469,321 bytes
>allocated
>> ==13470==
>> ==13470== 5 bytes in 1 blocks are possibly lost in loss record 20 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13470==    by 0x545A7B6: ldap_url_parsehosts (url.c:1404)
>> ==13470==    by 0x545DF7D: ldap_set_option (options.c:494)
>> ==13470==    by 0x54412B1: ldap_init (open.c:205)
>> ==13470==    by 0x5441337: ldap_open (open.c:72)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 5 bytes in 1 blocks are possibly lost in loss record 21 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13470==    by 0x573DA61: sb_debug_setup (sockbuf.c:797)
>> ==13470==    by 0x573E621: ber_sockbuf_add_io (sockbuf.c:206)
>> ==13470==    by 0x5440984: ldap_int_open_connection (open.c:353)
>> ==13470==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 5 bytes in 1 blocks are possibly lost in loss record 22 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13470==    by 0x545AAB2: ldap_url_dup (url.c:1204)
>> ==13470==    by 0x54561B6: ldap_new_connection (request.c:446)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 6 bytes in 1 blocks are possibly lost in loss record 27 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13470==    by 0x573DA61: sb_debug_setup (sockbuf.c:797)
>> ==13470==    by 0x573E621: ber_sockbuf_add_io (sockbuf.c:206)
>> ==13470==    by 0x54409DD: ldap_int_open_connection (open.c:403)
>> ==13470==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 8 bytes in 1 blocks are possibly lost in loss record 62 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x570936E: generic_gss_copy_oid (oid_ops.c:93)
>> ==13470==    by 0x570FBEA: gss_init_sec_context (g_init_sec_context.c:188)
>> ==13470==    by 0x492C152: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13470==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13470==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13470==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13470==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 9 bytes in 1 blocks are possibly lost in loss record 65 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x492166F: ads_try_connect (in /lib/libads.so)
>> ==13470==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13470==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==
>> ==13470== 9 bytes in 1 blocks are possibly lost in loss record 66 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x5709383: generic_gss_copy_oid (oid_ops.c:99)
>> ==13470==    by 0x570FBEA: gss_init_sec_context (g_init_sec_context.c:188)
>> ==13470==    by 0x492C152: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13470==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13470==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13470==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13470==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 12 bytes in 1 blocks are possibly lost in loss record 94 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x570FBCB: gss_init_sec_context (g_init_sec_context.c:183)
>> ==13470==    by 0x492C152: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13470==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13470==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13470==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13470==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==
>> ==13470== 13 bytes in 1 blocks are possibly lost in loss record 111 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x49215CC: ads_try_connect (in /lib/libads.so)
>> ==13470==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13470==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==
>> ==13470== 13 bytes in 1 blocks are possibly lost in loss record 112 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x493322D: ads_init (in /lib/libads.so)
>> ==13470==    by 0x158B59: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 13 bytes in 1 blocks are possibly lost in loss record 113 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x158C79: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 13 bytes in 1 blocks are definitely lost in loss record 114 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x530E755: handle_realm (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13470==
>> ==13470== 13 bytes in 1 blocks are definitely lost in loss record 115 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x530E77B: handle_realm (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13470==
>> ==13470== 14 bytes in 1 blocks are possibly lost in loss record 117 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x4922625: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 14 bytes in 1 blocks are definitely lost in loss record 118 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x5430817: expandNextArg (popt.c:613)
>> ==13470==    by 0x5431061: poptGetNextOpt (popt.c:871)
>> ==13470==    by 0x12F310: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 15 bytes in 1 blocks are possibly lost in loss record 131 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x488BA5A: memdup (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x5346D93: secrets_fetch (in /lib/libsecrets3.so)
>> ==13470==    by 0x53495AB: secrets_fetch_machine_password (in
>/lib/libsecrets3.so)
>> ==13470==    by 0x4B101A5: get_trust_pw_clear (in /lib/libpdb.so.0)
>> ==13470==    by 0x15920F: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==
>> ==13470== 16 bytes in 1 blocks are possibly lost in loss record 149 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13470==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13470==    by 0x4922575: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==
>> ==13470== 17 bytes in 1 blocks are possibly lost in loss record 152 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x49215B3: ads_try_connect (in /lib/libads.so)
>> ==13470==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13470==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==
>> ==13470== 17 bytes in 1 blocks are possibly lost in loss record 153 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13470==    by 0x5465311: ldap_str2charray (charray.c:213)
>> ==13470==    by 0x545A744: ldap_url_parsehosts (url.c:1342)
>> ==13470==    by 0x545DF7D: ldap_set_option (options.c:494)
>> ==13470==    by 0x54412B1: ldap_init (open.c:205)
>> ==13470==    by 0x5441337: ldap_open (open.c:72)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==
>> ==13470== 17 bytes in 1 blocks are possibly lost in loss record 154 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13470==    by 0x545AAD4: ldap_url_dup (url.c:1212)
>> ==13470==    by 0x54561B6: ldap_new_connection (request.c:446)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 19 bytes in 1 blocks are possibly lost in loss record 161 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x4933038: ads_build_path (in /lib/libads.so)
>> ==13470==    by 0x49330BE: ads_build_dn (in /lib/libads.so)
>> ==13470==    by 0x492160C: ads_try_connect (in /lib/libads.so)
>> ==13470==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13470==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==
>> ==13470== 20 bytes in 1 blocks are possibly lost in loss record 167 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13470==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13470==    by 0x5440984: ldap_int_open_connection (open.c:353)
>> ==13470==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==
>> ==13470== 20 bytes in 1 blocks are possibly lost in loss record 168 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13470==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13470==    by 0x54409AB: ldap_int_open_connection (open.c:390)
>> ==13470==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==
>> ==13470== 20 bytes in 1 blocks are possibly lost in loss record 169 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13470==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13470==    by 0x54409DD: ldap_int_open_connection (open.c:403)
>> ==13470==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==
>> ==13470== 20 bytes in 1 blocks are possibly lost in loss record 170 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13470==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13470==    by 0x492F5E0: ads_setup_sasl_wrapping (in /lib/libads.so)
>> ==13470==    by 0x492C917: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13470==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13470==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13470==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13470==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==
>> ==13470== 24 bytes in 1 blocks are possibly lost in loss record 179 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x4921630: ads_try_connect (in /lib/libads.so)
>> ==13470==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13470==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==
>> ==13470== 24 bytes in 1 blocks are possibly lost in loss record 180 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13470==    by 0x4921656: ads_try_connect (in /lib/libads.so)
>> ==13470==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13470==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==
>> ==13470== 24 bytes in 1 blocks are possibly lost in loss record 181 of 512
>> ==13470==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13470==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13470==    by 0x573B8DB: ber_memcalloc (memory.c:294)
>> ==13470==    by 0x573E6BA: ber_sockbuf_alloc (sockbuf.c:60)
>> ==13470==    by 0x5440CAB: ldap_create (open.c:158)
>> ==13470==    by 0x544128A: ldap_init (open.c:197)
>> ==13470==    by 0x5441337: ldap_open (open.c:72)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 29 bytes in 1 blocks are possibly lost in loss record 206 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13470==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13470==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 30 bytes in 1 blocks are possibly lost in loss record 207 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13470==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13470==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 36 bytes in 1 blocks are possibly lost in loss record 219 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13470==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13470==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 40 bytes in 1 blocks are possibly lost in loss record 221 of 512
>> ==13470==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13470==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13470==    by 0x545A7EC: ldap_url_parsehosts (url.c:1351)
>> ==13470==    by 0x545DF7D: ldap_set_option (options.c:494)
>> ==13470==    by 0x54412B1: ldap_init (open.c:205)
>> ==13470==    by 0x5441337: ldap_open (open.c:72)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 40 bytes in 1 blocks are possibly lost in loss record 222 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13470==    by 0x545AA2B: ldap_url_dup (url.c:1190)
>> ==13470==    by 0x54561B6: ldap_new_connection (request.c:446)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 231 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D4BF: talloc_enable_null_tracking (in
>/lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12F0AC: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 232 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495E028: talloc_autofree_context (in
>/lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489C676: get_iconv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489E4AF: strchr_m (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x52F99C5: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F122: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 233 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x53047C1: init_globals (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 234 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489C8DB: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 235 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12FC9E: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 236 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C345: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4922691: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 237 of 512
>> ==13470==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13470==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13470==    by 0x5456022: ldap_new_connection (request.c:398)
>> ==13470==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13470==    by 0x5441345: ldap_open (open.c:77)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 238 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12CE68: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 239 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x164646: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 48 bytes in 1 blocks are possibly lost in loss record 240 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C345: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x14ACDC: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x164663: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==
>> ==13470== 49 bytes in 1 blocks are possibly lost in loss record 241 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 49 bytes in 1 blocks are possibly lost in loss record 242 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 49 bytes in 1 blocks are possibly lost in loss record 243 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 52 bytes in 1 blocks are possibly lost in loss record 245 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13470==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13470==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 52 bytes in 1 blocks are possibly lost in loss record 246 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 52 bytes in 1 blocks are possibly lost in loss record 247 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EFC6E: addrchange_context_create (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x12E9E3: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 52 bytes in 1 blocks are possibly lost in loss record 248 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 54 bytes in 1 blocks are possibly lost in loss record 249 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489C9AC: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 54 bytes in 1 blocks are possibly lost in loss record 250 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489C9C6: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x530E517: init_iconv (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x531431D: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 55 bytes in 1 blocks are possibly lost in loss record 251 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48BB9FB: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 55 bytes in 1 blocks are possibly lost in loss record 252 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x5664278: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13470==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 253 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 254 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 255 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 256 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 257 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13470==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 258 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13470==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 259 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48BB903: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 260 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12E19B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13470==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 261 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12E296: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13470==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 262 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x17EDEE: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13470==
>> ==13470== 56 bytes in 1 blocks are possibly lost in loss record 263 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EB458: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 57 bytes in 1 blocks are possibly lost in loss record 264 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52F8760: set_remote_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x12F154: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 57 bytes in 1 blocks are possibly lost in loss record 265 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13470==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 57 bytes in 1 blocks are possibly lost in loss record 266 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x1500A7: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13470==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13470==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13470==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 267 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 268 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 269 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 270 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 271 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 272 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 273 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12E94C: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 274 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 275 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 276 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 277 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 278 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 279 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 280 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 281 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 60 bytes in 1 blocks are possibly lost in loss record 282 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 61 bytes in 1 blocks are possibly lost in loss record 283 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x56642D7: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13470==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 61 bytes in 1 blocks are possibly lost in loss record 284 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x1500F0: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13470==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13470==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13470==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 61 bytes in 1 blocks are possibly lost in loss record 285 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x15013B: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13470==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13470==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13470==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 62 bytes in 1 blocks are possibly lost in loss record 286 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 62 bytes in 1 blocks are possibly lost in loss record 287 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 62 bytes in 1 blocks are possibly lost in loss record 288 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 62 bytes in 1 blocks are possibly lost in loss record 289 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13470==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 62 bytes in 1 blocks are possibly lost in loss record 290 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13470==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 63 bytes in 1 blocks are possibly lost in loss record 292 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52F859E: set_local_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x53172DF: init_names (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F840: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 63 bytes in 1 blocks are possibly lost in loss record 293 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 294 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4882A35: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x56BBE82: dbwrap_fetch_locked_internal (in
>/lib/libdbwrap.so)
>> ==13470==    by 0x56BBF8D: dbwrap_fetch_locked (in /lib/libdbwrap.so)
>> ==13470==    by 0x56BCD2B: dbwrap_change_int32_atomic_action (in
>/lib/libdbwrap.so)
>> ==13470==    by 0x56BD63D: dbwrap_trans_do (in /lib/libdbwrap.so)
>> ==13470==    by 0x56BCF9A: dbwrap_trans_change_int32_atomic_bystring
>(in /lib/libdbwrap.so)
>> ==13470==    by 0x5346A77: get_rand_seed (in /lib/libsecrets3.so)
>> ==13470==    by 0x4887F8B: get_rand_reseed_data (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 295 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E84CB: tevent_select_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5663: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 296 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E9D79: tevent_poll_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5668: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 297 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E9DA9: tevent_poll_mt_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E566D: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 298 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDFB3: tevent_epoll_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5672: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 299 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EB2C3: tevent_standard_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5677: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 300 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EB06F: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 301 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13470==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13470==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 302 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 303 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 304 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 305 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 306 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 307 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 308 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 309 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48BB875: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 310 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12CE68: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 311 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x15FD55: wb_child_request_send (in /sbin/winbindd)
>> ==13470==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 312 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 313 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 314 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 315 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 316 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EB54F: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 317 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 318 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 319 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 320 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 321 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 64 bytes in 1 blocks are possibly lost in loss record 322 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 65 bytes in 1 blocks are possibly lost in loss record 323 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x14D7CC: dcip_to_name (in /sbin/winbindd)
>> ==13470==    by 0x14E551: find_new_dc (in /sbin/winbindd)
>> ==13470==    by 0x14EE2A: cm_open_connection (in /sbin/winbindd)
>> ==13470==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13470==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13470==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13470==
>> ==13470== 66 bytes in 1 blocks are possibly lost in loss record 324 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489F19B: push_utf8_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x4967232: smb_krb5_parse_name (in /lib/libkrb5samba.so)
>> ==13470==    by 0x4E1014A: kerberos_kinit_password_ext (in /lib/libgse.so)
>> ==13470==
>> ==13470== 66 bytes in 1 blocks are possibly lost in loss record 325 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489F2D8: pull_utf8_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x4926F4F: ads_pull_string (in /lib/libads.so)
>> ==13470==    by 0x4927D9B: ads_current_time (in /lib/libads.so)
>> ==13470==
>> ==13470== 67 bytes in 1 blocks are possibly lost in loss record 326 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4DBA021: internal_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DBA11C: smb_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6B1A: cli_tcon_andx_create (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 67 bytes in 1 blocks are possibly lost in loss record 327 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x57B5F54: pull_ascii_base_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x57B650C: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 329 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAC48: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 330 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52FB1A3: register_msg_pool_usage (in
>/lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAC56: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 331 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52FB313: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 332 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52FB342: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 333 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3A1D: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 334 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13470==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13470==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 335 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 336 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E738: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 337 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E796: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 338 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48BB96F: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 68 bytes in 1 blocks are possibly lost in loss record 339 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x536817E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13470==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 69 bytes in 1 blocks are possibly lost in loss record 340 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12DA92: new_connection (in /sbin/winbindd)
>> ==13470==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 70 bytes in 1 blocks are possibly lost in loss record 341 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489F59A: strupper_talloc_n_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489F6DE: strupper_talloc_n (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489F724: strupper_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x52E37C3: myhostname_upper (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x53048FA: init_globals (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F539: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 70 bytes in 1 blocks are possibly lost in loss record 342 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4DBA021: internal_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DBA11C: smb_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB2DCF: cli_sesssetup_blob_next (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 70 bytes in 1 blocks are possibly lost in loss record 343 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 70 bytes in 1 blocks are possibly lost in loss record 344 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C37C: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x14ACDC: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 346 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 347 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 348 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 349 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 350 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 351 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 352 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13470==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 353 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13470==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 354 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13470==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 355 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13470==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13470==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13470==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 356 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12DA92: new_connection (in /sbin/winbindd)
>> ==13470==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 357 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x160302: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 72 bytes in 1 blocks are possibly lost in loss record 358 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48ED9F2: epoll_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EB1D7: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6502: tevent_re_initialise (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52E1A9E: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 75 bytes in 1 blocks are possibly lost in loss record 359 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489025D: debug_set_logfile (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x5314D73: lp_set_logfile (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x4875B02: set_logfile (in /lib/libpopt_samba3.so)
>> ==13470==    by 0x4875DBC: popt_common_callback (in
>/lib/libpopt_samba3.so)
>> ==13470==    by 0x542FE4C: invokeCallbacksOPTION (popt.c:151)
>> ==13470==    by 0x542FE90: invokeCallbacksOPTION (popt.c:133)
>> ==13470==    by 0x5430D2D: poptGetNextOpt (popt.c:990)
>> ==13470==    by 0x12F310: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 75 bytes in 1 blocks are possibly lost in loss record 360 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C37C: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4922691: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==
>> ==13470== 76 bytes in 1 blocks are possibly lost in loss record 361 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13470==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 364 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48BB83B: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 365 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489F19B: push_utf8_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x4967232: smb_krb5_parse_name (in /lib/libkrb5samba.so)
>> ==13470==    by 0x4E1014A: kerberos_kinit_password_ext (in /lib/libgse.so)
>> ==13470==    by 0x4E10E51: kerberos_kinit_password (in /lib/libgse.so)
>> ==13470==    by 0x4DB4DE4: cli_session_setup_spnego_send (in
>/lib/liblibsmb.so)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 366 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489F2D8: pull_utf8_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x4926F4F: ads_pull_string (in /lib/libads.so)
>> ==13470==    by 0x4927D9B: ads_current_time (in /lib/libads.so)
>> ==13470==    by 0x49228CD: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 367 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4DBA021: internal_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DBA11C: smb_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB2DCF: cli_sesssetup_blob_next (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB2A27: cli_sesssetup_blob_send (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB3753: cli_session_setup_kerberos_send (in
>/lib/liblibsmb.so)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 368 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB3198: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 369 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4DBA021: internal_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DBA11C: smb_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6B1A: cli_tcon_andx_create (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6CCC: cli_tcon_andx_send (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB72F8: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 370 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x548CF64: __gconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x548CABD: iconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x48A01B5: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4DBA021: internal_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DBA11C: smb_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6B1A: cli_tcon_andx_create (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6CCC: cli_tcon_andx_send (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB72F8: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 371 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48A0001: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x57B5F54: pull_ascii_base_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x57B650C: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6EC1: cli_tcon_andx_done (in /lib/liblibsmb.so)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 372 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x548CF64: __gconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x548CABD: iconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x48A0157: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x57B5F54: pull_ascii_base_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x57B650C: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6EC1: cli_tcon_andx_done (in /lib/liblibsmb.so)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 373 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7177: tevent_queue_add_internal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E740D: tevent_queue_add (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x15FDAD: wb_child_request_send (in /sbin/winbindd)
>> ==13470==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 80 bytes in 1 blocks are possibly lost in loss record 374 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4D5AEEA: gensec_register (in /lib/libgensec.so.0.0.1)
>> ==13470==    by 0x4D522D4: gensec_ntlmssp_init (in /lib/libgensec.so.0.0.1)
>> ==13470==    by 0x5660EB4: run_init_functions (in /lib/libsamba-modules.so)
>> ==13470==    by 0x4D5B0F7: gensec_init (in /lib/libgensec.so.0.0.1)
>> ==13470==    by 0x12B986: kerberos_return_pac (in /sbin/winbindd)
>> ==13470==    by 0x143561: winbindd_raw_kerberos_login (in
>/sbin/winbindd)
>> ==13470==    by 0x144FF5: winbindd_dual_pam_auth_kerberos (in
>/sbin/winbindd)
>> ==13470==    by 0x14667F: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==
>> ==13470== 81 bytes in 1 blocks are possibly lost in loss record 375 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13470==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13470==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 84 bytes in 1 blocks are possibly lost in loss record 381 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==
>> ==13470== 84 bytes in 1 blocks are possibly lost in loss record 382 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13470==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 384 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EB0DA: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 385 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52EAB0E: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 386 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 387 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 388 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 389 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 390 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 391 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 392 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 393 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 394 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 395 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13470==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 396 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13470==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13470==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 397 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 398 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13470==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 399 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12DA92: new_connection (in /sbin/winbindd)
>> ==13470==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 400 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x17EDEE: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 401 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x160302: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 402 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x15FD55: wb_child_request_send (in /sbin/winbindd)
>> ==13470==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 403 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 404 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 405 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 406 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 407 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EB711: tevent_common_add_timer_internal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EB9BB: tevent_common_add_timer_v2 (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5EDB: _tevent_add_timer (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x14BC4C: set_domain_online_request (in /sbin/winbindd)
>> ==13470==    by 0x164387: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 408 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 409 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 410 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 411 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 88 bytes in 1 blocks are possibly lost in loss record 412 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 92 bytes in 1 blocks are possibly lost in loss record 413 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 92 bytes in 1 blocks are possibly lost in loss record 414 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 92 bytes in 1 blocks are possibly lost in loss record 415 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 416 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EA530: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 417 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x535B319: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13470==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 418 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12E250: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13470==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 419 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12E34B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13470==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 420 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52E1B05: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 421 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x1645C8: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 100 bytes in 1 blocks are possibly lost in loss record 422 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52E1B05: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 104 bytes in 2 blocks are possibly lost in loss record 426 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13470==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 107 bytes in 2 blocks are possibly lost in loss record 428 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13470==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13470==
>> ==13470== 108 bytes in 1 blocks are possibly lost in loss record 429 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 108 bytes in 1 blocks are possibly lost in loss record 430 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13470==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 108 bytes in 1 blocks are possibly lost in loss record 431 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x12DA4B: new_connection (in /sbin/winbindd)
>> ==13470==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 108 bytes in 1 blocks are possibly lost in loss record 432 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x17EDEE: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13470==
>> ==13470== 108 bytes in 1 blocks are possibly lost in loss record 433 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x160302: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 108 bytes in 1 blocks are possibly lost in loss record 434 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x15FD55: wb_child_request_send (in /sbin/winbindd)
>> ==13470==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13470==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13470==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13470==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 116 bytes in 1 blocks are possibly lost in loss record 435 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13470==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 116 bytes in 1 blocks are possibly lost in loss record 436 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13470==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13470==    by 0x12F682: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 116 bytes in 1 blocks are possibly lost in loss record 437 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13470==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13470==
>> ==13470== 116 bytes in 1 blocks are possibly lost in loss record 438 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4D361E3: add_sid_to_array (in /lib/libsamba-security.so)
>> ==13470==    by 0x4D362C8: add_sid_to_array_unique (in /lib/libsamba-
>security.so)
>> ==13470==    by 0x48BD037: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 116 bytes in 1 blocks are possibly lost in loss record 439 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x536822E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13470==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 116 bytes in 1 blocks are possibly lost in loss record 440 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48D707D: smb_register_ndr_interface (in
>/lib/libmsrpc3.so)
>> ==13470==    by 0x48D730B: initialize_interfaces (in /lib/libmsrpc3.so)
>> ==13470==    by 0x48D7345: get_iface_from_syntax (in /lib/libmsrpc3.so)
>> ==13470==    by 0x48D73DD: get_pipe_name_from_syntax (in
>/lib/libmsrpc3.so)
>> ==13470==    by 0x48D74F8: rpc_transport_np_init_send (in
>/lib/libmsrpc3.so)
>> ==13470==    by 0x48D7800: rpc_transport_np_init (in /lib/libmsrpc3.so)
>> ==13470==    by 0x48D5DDE: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13470==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13470==    by 0x48D6050: cli_rpc_pipe_open_noauth_transport (in
>/lib/libmsrpc3.so)
>> ==13470==
>> ==13470== 120 bytes in 1 blocks are possibly lost in loss record 441 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E5BC2: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13470==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 132 bytes in 1 blocks are possibly lost in loss record 450 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13470==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13470==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 132 bytes in 1 blocks are possibly lost in loss record 451 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13470==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13470==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 140 bytes in 1 blocks are possibly lost in loss record 453 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x488FB3A: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 140 bytes in 1 blocks are possibly lost in loss record 454 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x488FBA2: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 140 bytes in 1 blocks are possibly lost in loss record 455 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x566423D: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13470==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13470==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13470==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13470==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 168 bytes in 2 blocks are possibly lost in loss record 456 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DCC4: __talloc_vaslenprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DD83: talloc_vasprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DE3C: talloc_asprintf_append (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x52E3926: xx_path (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E3952: lock_path (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EB5F8: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 459 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 460 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 461 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 462 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 463 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 464 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 465 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 466 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 467 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 468 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 469 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 470 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 471 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13470==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13470==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 472 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 473 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 474 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 475 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 188 bytes in 1 blocks are possibly lost in loss record 476 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13470==    by 0x14ABAF: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 264 bytes in 1 blocks are possibly lost in loss record 485 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489C8AB: smb_iconv_handle_reinit (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489C6A2: get_iconv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489E4AF: strchr_m (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x52F99C5: talloc_sub_basic (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x53052C1: lp_string (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x530A715: lp_logfile (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F122: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 276 bytes in 1 blocks are possibly lost in loss record 486 of 512
>> ==13470==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13470==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13470==    by 0x5440B73: ldap_create (open.c:113)
>> ==13470==    by 0x544128A: ldap_init (open.c:197)
>> ==13470==    by 0x5441337: ldap_open (open.c:72)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==
>> ==13470== 304 bytes in 1 blocks are possibly lost in loss record 487 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F134: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 304 bytes in 1 blocks are possibly lost in loss record 488 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F345: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 304 bytes in 1 blocks are possibly lost in loss record 489 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12F5CF: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 316 bytes in 1 blocks are possibly lost in loss record 490 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x52E3667: smb_xmalloc_array (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x49331F8: ads_init (in /lib/libads.so)
>> ==13470==    by 0x158B59: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13470==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13470==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13470==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 428 bytes in 1 blocks are possibly lost in loss record 491 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 428 bytes in 1 blocks are possibly lost in loss record 492 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 428 bytes in 1 blocks are possibly lost in loss record 493 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13470==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13470==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13470==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 432 bytes in 1 blocks are possibly lost in loss record 494 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x14D517: add_one_dc_unique (in /sbin/winbindd)
>> ==13470==    by 0x14DE74: get_dcs (in /sbin/winbindd)
>> ==13470==    by 0x14ADE7: fork_child_dc_connect (in /sbin/winbindd)
>> ==13470==    by 0x14B0E6: check_domain_online_handler (in
>/sbin/winbindd)
>> ==13470==    by 0x48EBBE6: tevent_common_loop_timer_delay (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48ED74D: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 1,072 bytes in 1 blocks are possibly lost in loss record 498 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x489011B: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 1,254 bytes in 23 blocks are possibly lost in loss record 505 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x488FBDF: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 1,988 bytes in 1 blocks are possibly lost in loss record 506 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48EA343: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13470==    by 0x12F666: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 2,144 bytes in 1 blocks are possibly lost in loss record 507 of 512
>> ==13470==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13470==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x535C358: read_packet_handler (in
>/lib/libsmb_transport.so)
>> ==13470==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13470==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 8,512 bytes in 1 blocks are possibly lost in loss record 509 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13470==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13470==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13470==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13470==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13470==
>> ==13470== 32,640 bytes in 1 blocks are possibly lost in loss record 510 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x548D0F4: __gconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x548CABD: iconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x48A01B5: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x4DBA021: internal_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DBA11C: smb_bytes_push_str (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6B1A: cli_tcon_andx_create (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6CCC: cli_tcon_andx_send (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB72F8: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13470==
>> ==13470== 32,640 bytes in 1 blocks are possibly lost in loss record 511 of 512
>> ==13470==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13470==    by 0x548D0F4: __gconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x548CABD: iconv_open (in /lib/libc.so.6)
>> ==13470==    by 0x48A0157: smb_iconv_open_ex (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489CA85: get_conv_handle (in /lib/libsamba-util.so.0.0.1)
>> ==13470==    by 0x489D973: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13470==    by 0x57B5F54: pull_ascii_base_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x57B650C: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13470==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13470==    by 0x4DB6EC1: cli_tcon_andx_done (in /lib/liblibsmb.so)
>> ==13470==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13470==
>> ==13470== 32,772 bytes in 1 blocks are possibly lost in loss record 512 of 512
>> ==13470==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13470==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13470==    by 0x54581BD: ldap_new_select_info (os-ip.c:1040)
>> ==13470==    by 0x5440C93: ldap_create (open.c:154)
>> ==13470==    by 0x544128A: ldap_init (open.c:197)
>> ==13470==    by 0x5441337: ldap_open (open.c:72)
>> ==13470==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13470==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13470==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13470==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13470==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13470==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13470==
>> ==13470== LEAK SUMMARY:
>> ==13470==    definitely lost: 40 bytes in 3 blocks
>> ==13470==    indirectly lost: 0 bytes in 0 blocks
>> ==13470==      possibly lost: 135,479 bytes in 292 blocks
>> ==13470==    still reachable: 21,008 bytes in 273 blocks
>> ==13470==         suppressed: 0 bytes in 0 blocks
>> ==13470== Reachable blocks (those to which a pointer was found) are not
>shown.
>> ==13470== To see them, rerun with: --leak-check=full --show-
>reachable=yes
>> ==13470==
>> ==13470== For counts of detected and suppressed errors, rerun with: -v
>> ==13470== Use --track-origins=yes to see where uninitialised values come
>from
>> ==13470== ERROR SUMMARY: 2319 errors from 275 contexts (suppressed:
>209 from 10)
>> ==13468== Warning: invalid file descriptor -1 in syscall close()
>> ==13468== Invalid free() / delete / delete[] / realloc()
>> ==13468==    at 0x4826C7F: free (vg_replace_malloc.c:446)
>> ==13468==    by 0x55B6343: free_mem (in /lib/libc.so.6)
>> ==13468==    by 0x55B5E09: __libc_freeres (in /lib/libc.so.6)
>> ==13468==    by 0x48214D1: _vgnU_freeres (vg_preloaded.c:62)
>> ==13468==    by 0x5516B83: _Exit (in /lib/libc.so.6)
>> ==13468==    by 0x12C30C: terminate (in /sbin/winbindd)
>> ==13468==    by 0x12C3B7: winbindd_sig_term_handler (in /sbin/winbindd)
>> ==13468==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48ED6EC: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==  Address 0x58026d8 is not stack'd, malloc'd or (recently) free'd
>> ==13468==
>> ==13468==
>> ==13468== HEAP SUMMARY:
>> ==13468==     in use at exit: 210,308 bytes in 10,533 blocks
>> ==13468==   total heap usage: 15,015,443 allocs, 15,004,911 frees,
>1,736,662,739 bytes allocated
>> ==13468==
>> ==13468== 5 bytes in 1 blocks are possibly lost in loss record 13 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13468==    by 0x545A7B6: ldap_url_parsehosts (url.c:1404)
>> ==13468==    by 0x545DF7D: ldap_set_option (options.c:494)
>> ==13468==    by 0x54412B1: ldap_init (open.c:205)
>> ==13468==    by 0x5441337: ldap_open (open.c:72)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 5 bytes in 1 blocks are possibly lost in loss record 14 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13468==    by 0x573DA61: sb_debug_setup (sockbuf.c:797)
>> ==13468==    by 0x573E621: ber_sockbuf_add_io (sockbuf.c:206)
>> ==13468==    by 0x5440984: ldap_int_open_connection (open.c:353)
>> ==13468==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 5 bytes in 1 blocks are possibly lost in loss record 15 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13468==    by 0x545AAB2: ldap_url_dup (url.c:1204)
>> ==13468==    by 0x54561B6: ldap_new_connection (request.c:446)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 6 bytes in 1 blocks are possibly lost in loss record 19 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13468==    by 0x573DA61: sb_debug_setup (sockbuf.c:797)
>> ==13468==    by 0x573E621: ber_sockbuf_add_io (sockbuf.c:206)
>> ==13468==    by 0x54409DD: ldap_int_open_connection (open.c:403)
>> ==13468==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 8 bytes in 1 blocks are possibly lost in loss record 36 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x570936E: generic_gss_copy_oid (oid_ops.c:93)
>> ==13468==    by 0x570FBEA: gss_init_sec_context (g_init_sec_context.c:188)
>> ==13468==    by 0x492C152: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13468==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13468==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13468==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13468==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 9 bytes in 1 blocks are possibly lost in loss record 38 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x492166F: ads_try_connect (in /lib/libads.so)
>> ==13468==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13468==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 9 bytes in 1 blocks are possibly lost in loss record 39 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x5709383: generic_gss_copy_oid (oid_ops.c:99)
>> ==13468==    by 0x570FBEA: gss_init_sec_context (g_init_sec_context.c:188)
>> ==13468==    by 0x492C152: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13468==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13468==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13468==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13468==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 12 bytes in 1 blocks are possibly lost in loss record 63 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x570FBCB: gss_init_sec_context (g_init_sec_context.c:183)
>> ==13468==    by 0x492C152: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13468==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13468==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13468==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13468==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==
>> ==13468== 13 bytes in 1 blocks are possibly lost in loss record 80 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x49215CC: ads_try_connect (in /lib/libads.so)
>> ==13468==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13468==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 13 bytes in 1 blocks are possibly lost in loss record 81 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x493322D: ads_init (in /lib/libads.so)
>> ==13468==    by 0x158B59: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 13 bytes in 1 blocks are possibly lost in loss record 82 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x158C79: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 13 bytes in 1 blocks are definitely lost in loss record 83 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x530E755: handle_realm (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13468==
>> ==13468== 13 bytes in 1 blocks are definitely lost in loss record 84 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x530E77B: handle_realm (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13468==
>> ==13468== 14 bytes in 1 blocks are possibly lost in loss record 86 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x4922625: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 14 bytes in 1 blocks are definitely lost in loss record 87 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x5430817: expandNextArg (popt.c:613)
>> ==13468==    by 0x5431061: poptGetNextOpt (popt.c:871)
>> ==13468==    by 0x12F310: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 15 bytes in 1 blocks are possibly lost in loss record 100 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x488BA5A: memdup (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x5346D93: secrets_fetch (in /lib/libsecrets3.so)
>> ==13468==    by 0x53495AB: secrets_fetch_machine_password (in
>/lib/libsecrets3.so)
>> ==13468==    by 0x4B101A5: get_trust_pw_clear (in /lib/libpdb.so.0)
>> ==13468==    by 0x15920F: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 16 bytes in 1 blocks are possibly lost in loss record 117 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13468==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13468==    by 0x4922575: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 17 bytes in 1 blocks are possibly lost in loss record 120 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x49215B3: ads_try_connect (in /lib/libads.so)
>> ==13468==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13468==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 17 bytes in 1 blocks are possibly lost in loss record 121 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13468==    by 0x5465311: ldap_str2charray (charray.c:213)
>> ==13468==    by 0x545A744: ldap_url_parsehosts (url.c:1342)
>> ==13468==    by 0x545DF7D: ldap_set_option (options.c:494)
>> ==13468==    by 0x54412B1: ldap_init (open.c:205)
>> ==13468==    by 0x5441337: ldap_open (open.c:72)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 17 bytes in 1 blocks are possibly lost in loss record 122 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BA8D: ber_strdup_x (memory.c:639)
>> ==13468==    by 0x545AAD4: ldap_url_dup (url.c:1212)
>> ==13468==    by 0x54561B6: ldap_new_connection (request.c:446)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 19 bytes in 1 blocks are possibly lost in loss record 129 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x4933038: ads_build_path (in /lib/libads.so)
>> ==13468==    by 0x49330BE: ads_build_dn (in /lib/libads.so)
>> ==13468==    by 0x492160C: ads_try_connect (in /lib/libads.so)
>> ==13468==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13468==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==
>> ==13468== 20 bytes in 1 blocks are possibly lost in loss record 135 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13468==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13468==    by 0x5440984: ldap_int_open_connection (open.c:353)
>> ==13468==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 20 bytes in 1 blocks are possibly lost in loss record 136 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13468==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13468==    by 0x54409AB: ldap_int_open_connection (open.c:390)
>> ==13468==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 20 bytes in 1 blocks are possibly lost in loss record 137 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13468==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13468==    by 0x54409DD: ldap_int_open_connection (open.c:403)
>> ==13468==    by 0x5456175: ldap_new_connection (request.c:425)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 20 bytes in 1 blocks are possibly lost in loss record 138 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x573BB34: ber_memalloc (memory.c:242)
>> ==13468==    by 0x573E5DF: ber_sockbuf_add_io (sockbuf.c:194)
>> ==13468==    by 0x492F5E0: ads_setup_sasl_wrapping (in /lib/libads.so)
>> ==13468==    by 0x492C917: ads_sasl_spnego_gsskrb5_bind (in
>/lib/libads.so)
>> ==13468==    by 0x492D3D9: ads_sasl_spnego_krb5_bind (in /lib/libads.so)
>> ==13468==    by 0x492D90D: ads_sasl_spnego_bind (in /lib/libads.so)
>> ==13468==    by 0x492E8AF: ads_sasl_bind (in /lib/libads.so)
>> ==13468==    by 0x4922A0B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 24 bytes in 1 blocks are possibly lost in loss record 148 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x4921630: ads_try_connect (in /lib/libads.so)
>> ==13468==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13468==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 24 bytes in 1 blocks are possibly lost in loss record 149 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13468==    by 0x4921656: ads_try_connect (in /lib/libads.so)
>> ==13468==    by 0x49219D0: ads_find_dc (in /lib/libads.so)
>> ==13468==    by 0x492249B: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 24 bytes in 1 blocks are possibly lost in loss record 150 of 482
>> ==13468==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13468==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13468==    by 0x573B8DB: ber_memcalloc (memory.c:294)
>> ==13468==    by 0x573E6BA: ber_sockbuf_alloc (sockbuf.c:60)
>> ==13468==    by 0x5440CAB: ldap_create (open.c:158)
>> ==13468==    by 0x544128A: ldap_init (open.c:197)
>> ==13468==    by 0x5441337: ldap_open (open.c:72)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 29 bytes in 1 blocks are possibly lost in loss record 173 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13468==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13468==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 30 bytes in 1 blocks are possibly lost in loss record 174 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13468==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13468==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 36 bytes in 1 blocks are possibly lost in loss record 184 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13468==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13468==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 40 bytes in 1 blocks are possibly lost in loss record 185 of 482
>> ==13468==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13468==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13468==    by 0x545A7EC: ldap_url_parsehosts (url.c:1351)
>> ==13468==    by 0x545DF7D: ldap_set_option (options.c:494)
>> ==13468==    by 0x54412B1: ldap_init (open.c:205)
>> ==13468==    by 0x5441337: ldap_open (open.c:72)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 40 bytes in 1 blocks are possibly lost in loss record 186 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x573B926: ber_memalloc_x (memory.c:226)
>> ==13468==    by 0x545AA2B: ldap_url_dup (url.c:1190)
>> ==13468==    by 0x54561B6: ldap_new_connection (request.c:446)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 190 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D4BF: talloc_enable_null_tracking (in
>/lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12F0AC: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 191 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x53047C1: init_globals (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13468==    by 0x12F682: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 192 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12FC9E: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 193 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C345: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4922691: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 194 of 482
>> ==13468==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13468==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13468==    by 0x5456022: ldap_new_connection (request.c:398)
>> ==13468==    by 0x54408B0: ldap_open_defconn (open.c:41)
>> ==13468==    by 0x5441345: ldap_open (open.c:77)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 195 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C0CA: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12CE68: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 48 bytes in 1 blocks are possibly lost in loss record 196 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x164646: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 197 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 198 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489D91C: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB32AC: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 199 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 200 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAECD9: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 201 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAED02: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 202 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAED2B: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 203 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAED54: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 49 bytes in 1 blocks are possibly lost in loss record 204 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D4F1B: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 52 bytes in 1 blocks are possibly lost in loss record 206 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13468==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13468==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 52 bytes in 1 blocks are possibly lost in loss record 207 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 52 bytes in 1 blocks are possibly lost in loss record 208 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EFC6E: addrchange_context_create (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x12E9E3: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 52 bytes in 1 blocks are possibly lost in loss record 209 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 52 bytes in 1 blocks are possibly lost in loss record 210 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA98A: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48ED6EC: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x164663: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 52 bytes in 1 blocks are possibly lost in loss record 211 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x48D4A0E: rpccli_bh_create (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5F1E: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 53 bytes in 1 blocks are possibly lost in loss record 212 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DB71DB: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB760A: cli_tree_connect (in /lib/liblibsmb.so)
>> ==13468==    by 0x14D174: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 53 bytes in 1 blocks are possibly lost in loss record 213 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DB664A: cli_tcon_andx_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB6CCC: cli_tcon_andx_send (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB72F8: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB760A: cli_tree_connect (in /lib/liblibsmb.so)
>> ==13468==    by 0x14D174: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 55 bytes in 1 blocks are possibly lost in loss record 214 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48BB9FB: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 55 bytes in 1 blocks are possibly lost in loss record 215 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x5664278: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13468==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 216 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 217 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 218 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 219 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 220 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13468==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 221 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13468==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 222 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48BB903: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 223 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12E19B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13468==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 224 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12E296: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13468==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 225 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x17EDEE: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 226 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EB458: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 56 bytes in 1 blocks are possibly lost in loss record 227 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D5E42: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 57 bytes in 1 blocks are possibly lost in loss record 228 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52F8760: set_remote_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x12F154: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 57 bytes in 1 blocks are possibly lost in loss record 229 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13468==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13468==    by 0x12F682: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 57 bytes in 1 blocks are possibly lost in loss record 230 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x1500A7: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13468==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13468==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 57 bytes in 1 blocks are possibly lost in loss record 231 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAE9A8: cli_set_domain (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DAEB39: cli_init_creds (in /lib/liblibsmb.so)
>> ==13468==    by 0x14CB68: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 57 bytes in 1 blocks are possibly lost in loss record 232 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DE927A: tstream_cli_np_open_send (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48D7563: rpc_transport_np_init_send (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D7800: rpc_transport_np_init (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5DDE: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 57 bytes in 1 blocks are possibly lost in loss record 233 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D4F33: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 59 bytes in 1 blocks are possibly lost in loss record 234 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D8AD6: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 235 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 236 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 237 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 238 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 239 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 240 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 241 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12E94C: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 242 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D8B2C: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 243 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 244 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 245 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 246 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 60 bytes in 1 blocks are possibly lost in loss record 247 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 61 bytes in 1 blocks are possibly lost in loss record 248 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x56642D7: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13468==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 61 bytes in 1 blocks are possibly lost in loss record 249 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x1500F0: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13468==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13468==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 61 bytes in 1 blocks are possibly lost in loss record 250 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x15013B: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13468==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13468==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 61 bytes in 1 blocks are possibly lost in loss record 251 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAEEF6: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 62 bytes in 1 blocks are possibly lost in loss record 252 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 62 bytes in 1 blocks are possibly lost in loss record 253 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 62 bytes in 1 blocks are possibly lost in loss record 254 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 62 bytes in 1 blocks are possibly lost in loss record 255 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13468==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 62 bytes in 1 blocks are possibly lost in loss record 256 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13468==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 62 bytes in 1 blocks are possibly lost in loss record 257 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489DAA9: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x57B5F54: pull_ascii_base_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x57B650C: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB6EC1: cli_tcon_andx_done (in /lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 63 bytes in 1 blocks are possibly lost in loss record 259 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52F859E: set_local_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x53172DF: init_names (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12F840: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 63 bytes in 1 blocks are possibly lost in loss record 260 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 63 bytes in 1 blocks are possibly lost in loss record 261 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAEAA2: cli_set_password (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DAEBD8: cli_init_creds (in /lib/liblibsmb.so)
>> ==13468==    by 0x14CB68: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 63 bytes in 1 blocks are possibly lost in loss record 262 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48F8A7B: netlogon_creds_copy (in /lib/libcliauth.so)
>> ==13468==    by 0x48D3873: rpc_pipe_bind_step_two_trigger (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D345F: rpc_pipe_bind_step_one_done (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D1BD5: rpc_api_pipe_got_pdu (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 63 bytes in 1 blocks are possibly lost in loss record 263 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48F8A7B: netlogon_creds_copy (in /lib/libcliauth.so)
>> ==13468==    by 0x48D4F95: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 264 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E84CB: tevent_select_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5663: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 265 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E9D79: tevent_poll_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5668: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 266 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E9DA9: tevent_poll_mt_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E566D: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 267 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDFB3: tevent_epoll_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5672: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 268 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EB2C3: tevent_standard_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5677: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 269 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EB06F: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 270 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13468==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13468==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 271 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 272 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 273 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 274 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 275 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 276 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 277 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 278 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48BB875: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 279 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4883B51: data_blob_talloc_named (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x4D7D90A: smb1cli_session_set_session_key (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DB394F: cli_session_setup_kerberos_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DB3358: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 280 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D6F204: smb_signing_activate (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D7313A: smb1cli_conn_activate_signing (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DB39B0: cli_session_setup_kerberos_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DB3358: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 281 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D8A7E: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 282 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C101: talloc_named (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12CE68: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 283 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x15FD55: wb_child_request_send (in /sbin/winbindd)
>> ==13468==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 284 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EB54F: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 285 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 286 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 287 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 288 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 289 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 290 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 291 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAEA29: cli_set_username (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DAEB04: cli_init_creds (in /lib/liblibsmb.so)
>> ==13468==    by 0x14CB68: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 292 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48F8ABF: netlogon_creds_copy (in /lib/libcliauth.so)
>> ==13468==    by 0x48D3873: rpc_pipe_bind_step_two_trigger (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D345F: rpc_pipe_bind_step_one_done (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D1BD5: rpc_api_pipe_got_pdu (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 293 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D4F6A: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 64 bytes in 1 blocks are possibly lost in loss record 294 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48F8ABF: netlogon_creds_copy (in /lib/libcliauth.so)
>> ==13468==    by 0x48D4F95: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 65 bytes in 1 blocks are possibly lost in loss record 295 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x14D7CC: dcip_to_name (in /sbin/winbindd)
>> ==13468==    by 0x14E551: find_new_dc (in /sbin/winbindd)
>> ==13468==    by 0x14EE2A: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13468==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13468==
>> ==13468== 65 bytes in 1 blocks are possibly lost in loss record 296 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x14EBAE: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x166EAE: _wbint_PingDc (in /sbin/winbindd)
>> ==13468==    by 0x19C70C: api_wbint_PingDc (in /sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==
>> ==13468== 65 bytes in 1 blocks are possibly lost in loss record 297 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D727F5: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 65 bytes in 1 blocks are possibly lost in loss record 298 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4D728B6: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==
>> ==13468== 65 bytes in 1 blocks are possibly lost in loss record 299 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D5D3C: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 67 bytes in 1 blocks are possibly lost in loss record 300 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x533B303: talloc_asprintf_strupper_m (in /lib/libsamba3-
>util.so)
>> ==13468==    by 0x48D5D61: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 302 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAC48: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 303 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52FB1A3: register_msg_pool_usage (in
>/lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAC56: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 304 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52FB313: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 305 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52FB342: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 306 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3A1D: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 307 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13468==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13468==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 308 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 309 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E738: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 310 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E796: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 311 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48BB96F: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 312 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x536817E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13468==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 313 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D957F4: _tstream_context_create (in /lib/libsamba-
>sockets.so)
>> ==13468==    by 0x4DE9653: _tstream_cli_np_open_recv (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48D764F: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 314 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x164237: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 315 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x16426B: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 316 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x16429F: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 317 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x1642D3: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 68 bytes in 1 blocks are possibly lost in loss record 318 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4882A35: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x4D74759: smb1cli_conn_signv (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D74C5B: smb1cli_req_writev_submit (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D76F0E: smb1cli_req_chain_submit (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D7511D: smb1cli_req_send (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D7B0FC: smbXcli_negprot_smb1_subreq (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D7ACED: smbXcli_negprot_send (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D7D0C8: smbXcli_negprot (in
>/lib/libcli_smb_common.so)
>> ==13468==
>> ==13468== 69 bytes in 1 blocks are possibly lost in loss record 319 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12DA92: new_connection (in /sbin/winbindd)
>> ==13468==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 70 bytes in 1 blocks are possibly lost in loss record 320 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489F59A: strupper_talloc_n_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x489F6DE: strupper_talloc_n (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x489F724: strupper_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x52E37C3: myhostname_upper (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x53048FA: init_globals (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12F539: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 322 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 323 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 324 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 325 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 326 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 327 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 328 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13468==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 329 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13468==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 330 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13468==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 331 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13468==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13468==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 332 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D8AD6: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 333 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D8B2C: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 334 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12DA92: new_connection (in /sbin/winbindd)
>> ==13468==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 335 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x160302: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 336 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48ED9F2: epoll_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EB1D7: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6502: tevent_re_initialise (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52E1A9E: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 337 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4D728B6: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==
>> ==13468== 72 bytes in 1 blocks are possibly lost in loss record 338 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13468==    by 0x48D4A0E: rpccli_bh_create (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5F1E: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 75 bytes in 1 blocks are possibly lost in loss record 339 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489025D: debug_set_logfile (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x5314D73: lp_set_logfile (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x4875B02: set_logfile (in /lib/libpopt_samba3.so)
>> ==13468==    by 0x4875DBC: popt_common_callback (in
>/lib/libpopt_samba3.so)
>> ==13468==    by 0x542FE4C: invokeCallbacksOPTION (popt.c:151)
>> ==13468==    by 0x542FE90: invokeCallbacksOPTION (popt.c:133)
>> ==13468==    by 0x5430D2D: poptGetNextOpt (popt.c:990)
>> ==13468==    by 0x12F310: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 75 bytes in 1 blocks are possibly lost in loss record 340 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DBAE: talloc_vasprintf (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C03D: talloc_set_name_v (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C37C: talloc_init (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4922691: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==
>> ==13468== 76 bytes in 1 blocks are possibly lost in loss record 341 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13468==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 76 bytes in 1 blocks are possibly lost in loss record 342 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D4EE0: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==
>> ==13468== 80 bytes in 1 blocks are possibly lost in loss record 344 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48BB83B: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 80 bytes in 1 blocks are possibly lost in loss record 345 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7177: tevent_queue_add_internal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E740D: tevent_queue_add (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x15FDAD: wb_child_request_send (in /sbin/winbindd)
>> ==13468==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 80 bytes in 1 blocks are possibly lost in loss record 346 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D6E766: smb_signing_init_ex (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D6E807: smb_signing_init (in /lib/libcli_smb_common.so)
>> ==13468==    by 0x4D729E8: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 81 bytes in 1 blocks are possibly lost in loss record 347 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13468==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13468==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 84 bytes in 1 blocks are possibly lost in loss record 353 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==
>> ==13468== 84 bytes in 1 blocks are possibly lost in loss record 354 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DCC4: __talloc_vaslenprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DD83: talloc_vasprintf_append (in
>/lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DE3C: talloc_asprintf_append (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52E3926: xx_path (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E3952: lock_path (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EB5F8: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==
>> ==13468== 84 bytes in 1 blocks are possibly lost in loss record 355 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13468==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 357 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EB0DA: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 358 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x52EAB0E: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 359 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 360 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 361 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 362 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 363 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 364 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 365 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 366 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 367 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 368 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13468==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 369 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13468==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13468==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 370 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 371 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13468==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 372 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D8A4D: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 373 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D8AD6: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 374 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D8B2C: rpc_transport_tstream_init (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D76BB: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 375 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12DA92: new_connection (in /sbin/winbindd)
>> ==13468==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 376 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x17EDEE: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 377 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x160302: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 378 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x15FD55: wb_child_request_send (in /sbin/winbindd)
>> ==13468==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 379 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 380 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 381 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 382 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 383 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 88 bytes in 1 blocks are possibly lost in loss record 384 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4D728B6: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==
>> ==13468== 92 bytes in 1 blocks are possibly lost in loss record 385 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 92 bytes in 1 blocks are possibly lost in loss record 386 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 92 bytes in 1 blocks are possibly lost in loss record 387 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 92 bytes in 1 blocks are possibly lost in loss record 388 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D7E74D: smbXcli_tcon_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF7A: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 92 bytes in 1 blocks are possibly lost in loss record 389 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D7D27C: smbXcli_session_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEFB5: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 100 bytes in 1 blocks are possibly lost in loss record 390 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EA530: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==
>> ==13468== 100 bytes in 1 blocks are possibly lost in loss record 391 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x535B319: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13468==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 100 bytes in 1 blocks are possibly lost in loss record 392 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12E250: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13468==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 100 bytes in 1 blocks are possibly lost in loss record 393 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12E34B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13468==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 100 bytes in 1 blocks are possibly lost in loss record 394 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52E1B05: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 100 bytes in 1 blocks are possibly lost in loss record 395 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x1645C8: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDEE7: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 104 bytes in 2 blocks are possibly lost in loss record 399 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13468==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13468==    by 0x12F682: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 107 bytes in 2 blocks are possibly lost in loss record 401 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13468==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13468==
>> ==13468== 108 bytes in 1 blocks are possibly lost in loss record 402 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 108 bytes in 1 blocks are possibly lost in loss record 403 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13468==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 108 bytes in 1 blocks are possibly lost in loss record 404 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x12DA4B: new_connection (in /sbin/winbindd)
>> ==13468==    by 0x12E0ED: winbindd_listen_fde_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 108 bytes in 1 blocks are possibly lost in loss record 405 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x17EDEE: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x194317: wb_req_read_done (in /sbin/winbindd)
>> ==13468==
>> ==13468== 108 bytes in 1 blocks are possibly lost in loss record 406 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x160302: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 108 bytes in 1 blocks are possibly lost in loss record 407 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x15FD55: wb_child_request_send (in /sbin/winbindd)
>> ==13468==    by 0x160358: wb_domain_request_send (in /sbin/winbindd)
>> ==13468==    by 0x17F0C1: winbindd_pam_auth_send (in /sbin/winbindd)
>> ==13468==    by 0x12CFDF: process_request (in /sbin/winbindd)
>> ==13468==    by 0x12DD38: winbind_client_request_read (in
>/sbin/winbindd)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 112 bytes in 1 blocks are possibly lost in loss record 408 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48F8A31: netlogon_creds_copy (in /lib/libcliauth.so)
>> ==13468==    by 0x48D3873: rpc_pipe_bind_step_two_trigger (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D345F: rpc_pipe_bind_step_one_done (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48D1BD5: rpc_api_pipe_got_pdu (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 112 bytes in 1 blocks are possibly lost in loss record 409 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48F8A31: netlogon_creds_copy (in /lib/libcliauth.so)
>> ==13468==    by 0x48D4F95: rpccli_schannel_bind_data (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D678E: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 410 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13468==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13468==    by 0x12F682: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 411 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13468==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13468==    by 0x12F682: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 412 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13468==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 413 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D361E3: add_sid_to_array (in /lib/libsamba-security.so)
>> ==13468==    by 0x4D362C8: add_sid_to_array_unique (in /lib/libsamba-
>security.so)
>> ==13468==    by 0x48BD037: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 414 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x536822E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13468==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 415 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D707D: smb_register_ndr_interface (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D730B: initialize_interfaces (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D7345: get_iface_from_syntax (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D73DD: get_pipe_name_from_syntax (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D74F8: rpc_transport_np_init_send (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48D7800: rpc_transport_np_init (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5DDE: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6050: cli_rpc_pipe_open_noauth_transport (in
>/lib/libmsrpc3.so)
>> ==13468==
>> ==13468== 116 bytes in 1 blocks are possibly lost in loss record 416 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D7D2AC: smbXcli_session_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEFB5: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 120 bytes in 1 blocks are possibly lost in loss record 417 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E5BC2: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13468==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 124 bytes in 1 blocks are possibly lost in loss record 418 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48D5CC2: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D6742: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==
>> ==13468== 128 bytes in 1 blocks are possibly lost in loss record 420 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D95848: _tstream_context_create (in /lib/libsamba-
>sockets.so)
>> ==13468==    by 0x4DE9653: _tstream_cli_np_open_recv (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48D764F: rpc_transport_np_init_pipe_open (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4DE95AD: tstream_cli_np_open_done (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 130 bytes in 2 blocks are possibly lost in loss record 421 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x14EBAE: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x19C13D: api_wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==    by 0x1651CB: winbindd_dual_ndrcmd (in /sbin/winbindd)
>> ==13468==
>> ==13468== 132 bytes in 1 blocks are possibly lost in loss record 429 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13468==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13468==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 132 bytes in 1 blocks are possibly lost in loss record 430 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13468==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13468==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 140 bytes in 1 blocks are possibly lost in loss record 432 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x488FB3A: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 140 bytes in 1 blocks are possibly lost in loss record 433 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x488FBA2: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 140 bytes in 1 blocks are possibly lost in loss record 434 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x566423D: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13468==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13468==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13468==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13468==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 168 bytes in 1 blocks are possibly lost in loss record 435 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4883B51: data_blob_talloc_named (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x4D7B853: smbXcli_negprot_smb1_done (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4D76808: smb1cli_conn_dispatch_incoming (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4D7543D: smbXcli_conn_received (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 176 bytes in 1 blocks are possibly lost in loss record 436 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DAECB1: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==    by 0x1669E0: _wbint_CheckMachineAccount (in
>/sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 439 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 440 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 441 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 442 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 443 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 444 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 445 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 446 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 447 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x163558: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 448 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 449 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 450 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x1635FD: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 188 bytes in 1 blocks are possibly lost in loss record 451 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13468==    by 0x16362E: winbindd_reinit_after_fork (in /sbin/winbindd)
>> ==13468==    by 0x1640C5: fork_domain_child (in /sbin/winbindd)
>> ==13468==    by 0x15FE40: wb_child_request_trigger (in /sbin/winbindd)
>> ==13468==    by 0x48E7139: tevent_queue_immediate_trigger (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6E18: tevent_common_loop_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 242 bytes in 1 blocks are possibly lost in loss record 455 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489DAA9: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB3222: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13468==
>> ==13468== 254 bytes in 1 blocks are possibly lost in loss record 456 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489DAA9: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13468==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13468==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13468==    by 0x4DB3198: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13468==
>> ==13468== 264 bytes in 1 blocks are possibly lost in loss record 457 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4DE9D1D: tstream_cli_np_writev_write_next (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x4DE9BB1: tstream_cli_np_writev_send (in
>/lib/liblibsmb.so)
>> ==13468==    by 0x4D95E69: tstream_writev_send (in /lib/libsamba-
>sockets.so)
>> ==13468==    by 0x4D96EAE: tstream_writev_queue_trigger (in
>/lib/libsamba-sockets.so)
>> ==13468==    by 0x48E738A: tevent_queue_add_internal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E7490: tevent_queue_add_optimize_empty (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x4D96DD9: tstream_writev_queue_send (in /lib/libsamba-
>sockets.so)
>> ==13468==    by 0x48D853A: rpc_tstream_trans_send (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D0A53: cli_api_pipe_send (in /lib/libmsrpc3.so)
>> ==13468==
>> ==13468== 276 bytes in 1 blocks are possibly lost in loss record 458 of 482
>> ==13468==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13468==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13468==    by 0x5440B73: ldap_create (open.c:113)
>> ==13468==    by 0x544128A: ldap_init (open.c:197)
>> ==13468==    by 0x5441337: ldap_open (open.c:72)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==
>> ==13468== 304 bytes in 1 blocks are possibly lost in loss record 459 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12F134: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 304 bytes in 1 blocks are possibly lost in loss record 460 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12F345: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 304 bytes in 1 blocks are possibly lost in loss record 461 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12F5CF: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 316 bytes in 1 blocks are possibly lost in loss record 462 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x52E3667: smb_xmalloc_array (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x49331F8: ads_init (in /lib/libads.so)
>> ==13468==    by 0x158B59: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x13C7D2: cache_name2sid (in /sbin/winbindd)
>> ==13468==    by 0x146E7A: winbindd_dual_pam_auth (in /sbin/winbindd)
>> ==13468==    by 0x160DEA: child_process_request (in /sbin/winbindd)
>> ==13468==    by 0x16399B: child_handler (in /sbin/winbindd)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==
>> ==13468== 428 bytes in 1 blocks are possibly lost in loss record 463 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 428 bytes in 1 blocks are possibly lost in loss record 464 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 428 bytes in 1 blocks are possibly lost in loss record 465 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13468==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13468==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13468==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 544 bytes in 1 blocks are possibly lost in loss record 466 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4D727A8: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13468==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13468==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13468==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13468==    by 0x14F588: init_dc_connection (in /sbin/winbindd)
>> ==13468==    by 0x14F5B0: init_dc_connection_rpc (in /sbin/winbindd)
>> ==13468==    by 0x151BB0: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 1,072 bytes in 1 blocks are possibly lost in loss record 468 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x489011B: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 1,072 bytes in 1 blocks are possibly lost in loss record 469 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x4911A7B: ndr_push_init_ctx (in /lib/libndr.so.0.0.2)
>> ==13468==    by 0x4913D31: ndr_push_struct_blob (in /lib/libndr.so.0.0.2)
>> ==13468==    by 0x48D9020: dcerpc_push_dcerpc_auth (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D21D5: create_rpc_bind_req (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D30A5: rpc_pipe_bind_send (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D42D3: rpc_pipe_bind (in /lib/libmsrpc3.so)
>> ==13468==    by 0x48D684A: cli_rpc_pipe_open_schannel_with_key (in
>/lib/libmsrpc3.so)
>> ==13468==    by 0x151EDA: cm_connect_netlogon (in /sbin/winbindd)
>> ==13468==
>> ==13468== 1,254 bytes in 23 blocks are possibly lost in loss record 476 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x488FBDF: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13468==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 1,988 bytes in 1 blocks are possibly lost in loss record 477 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48EA343: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13468==    by 0x12F666: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 2,144 bytes in 1 blocks are possibly lost in loss record 478 of 482
>> ==13468==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13468==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x535C358: read_packet_handler (in
>/lib/libsmb_transport.so)
>> ==13468==    by 0x48ED97F: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13468==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 8,512 bytes in 1 blocks are possibly lost in loss record 480 of 482
>> ==13468==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13468==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13468==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13468==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13468==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13468==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13468==
>> ==13468== 32,772 bytes in 1 blocks are possibly lost in loss record 481 of 482
>> ==13468==    at 0x4826011: calloc (vg_replace_malloc.c:593)
>> ==13468==    by 0x573B85F: ber_memcalloc_x (memory.c:277)
>> ==13468==    by 0x54581BD: ldap_new_select_info (os-ip.c:1040)
>> ==13468==    by 0x5440C93: ldap_create (open.c:154)
>> ==13468==    by 0x544128A: ldap_init (open.c:197)
>> ==13468==    by 0x5441337: ldap_open (open.c:72)
>> ==13468==    by 0x4920BFD: ldap_open_with_timeout (in /lib/libads.so)
>> ==13468==    by 0x492271E: ads_connect (in /lib/libads.so)
>> ==13468==    by 0x158D18: ads_cached_connection_connect (in
>/sbin/winbindd)
>> ==13468==    by 0x1592EE: ads_cached_connection (in /sbin/winbindd)
>> ==13468==    by 0x15CD7F: sequence_number (in /sbin/winbindd)
>> ==13468==    by 0x134893: refresh_sequence_number (in /sbin/winbindd)
>> ==13468==
>> ==13468== LEAK SUMMARY:
>> ==13468==    definitely lost: 40 bytes in 3 blocks
>> ==13468==    indirectly lost: 0 bytes in 0 blocks
>> ==13468==      possibly lost: 72,649 bytes in 310 blocks
>> ==13468==    still reachable: 137,619 bytes in 10,220 blocks
>> ==13468==         suppressed: 0 bytes in 0 blocks
>> ==13468== Reachable blocks (those to which a pointer was found) are not
>shown.
>> ==13468== To see them, rerun with: --leak-check=full --show-
>reachable=yes
>> ==13468==
>> ==13468== For counts of detected and suppressed errors, rerun with: -v
>> ==13468== Use --track-origins=yes to see where uninitialised values come
>from
>> ==13468== ERROR SUMMARY: 1825 errors from 293 contexts (suppressed:
>209 from 10)
>> ==13382== Invalid free() / delete / delete[] / realloc()
>> ==13382==    at 0x4826C7F: free (vg_replace_malloc.c:446)
>> ==13382==    by 0x55B6343: free_mem (in /lib/libc.so.6)
>> ==13382==    by 0x55B5E09: __libc_freeres (in /lib/libc.so.6)
>> ==13382==    by 0x48214D1: _vgnU_freeres (vg_preloaded.c:62)
>> ==13382==    by 0x5516B83: _Exit (in /lib/libc.so.6)
>> ==13382==    by 0x12C30C: terminate (in /sbin/winbindd)
>> ==13382==    by 0x12C3B7: winbindd_sig_term_handler (in /sbin/winbindd)
>> ==13382==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48ED6EC: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13382==  Address 0x58026d8 is not stack'd, malloc'd or (recently) free'd
>> ==13382==
>> ==13382==
>> ==13382== HEAP SUMMARY:
>> ==13382==     in use at exit: 37,397 bytes in 333 blocks
>> ==13382==   total heap usage: 607,794 allocs, 607,462 frees, 138,760,996
>bytes allocated
>> ==13382==
>> ==13382== 13 bytes in 1 blocks are definitely lost in loss record 43 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13382==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x530E755: handle_realm (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 13 bytes in 1 blocks are definitely lost in loss record 44 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x54EE86F: strdup (in /lib/libc.so.6)
>> ==13382==    by 0x5303AE4: string_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5303BDC: string_set (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x530E77B: handle_realm (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x530FB5B: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 14 bytes in 1 blocks are definitely lost in loss record 46 of 298
>> ==13382==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13382==    by 0x5430817: expandNextArg (popt.c:613)
>> ==13382==    by 0x5431061: poptGetNextOpt (popt.c:871)
>> ==13382==    by 0x12F310: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 29 bytes in 1 blocks are possibly lost in loss record 79 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13382==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13382==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 30 bytes in 1 blocks are possibly lost in loss record 80 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13382==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13382==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 36 bytes in 1 blocks are possibly lost in loss record 89 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13382==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13382==    by 0x160F8D: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 36 bytes in 1 blocks are definitely lost in loss record 90 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x54DE697: vasprintf (in /lib/libc.so.6)
>> ==13382==    by 0x54C052A: asprintf (in /lib/libc.so.6)
>> ==13382==    by 0x4894386: pidfile_unlink (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x12C300: terminate (in /sbin/winbindd)
>> ==13382==    by 0x12C3B7: winbindd_sig_term_handler (in /sbin/winbindd)
>> ==13382==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48ED6EC: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 48 bytes in 1 blocks are possibly lost in loss record 94 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D4BF: talloc_enable_null_tracking (in
>/lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x12F0AC: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 48 bytes in 1 blocks are possibly lost in loss record 95 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x53047C1: init_globals (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13382==    by 0x12F682: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 48 bytes in 1 blocks are possibly lost in loss record 96 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4882AC3: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12FC9E: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 49 bytes in 1 blocks are possibly lost in loss record 97 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x12C4C9: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 49 bytes in 1 blocks are possibly lost in loss record 98 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAECD9: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 49 bytes in 1 blocks are possibly lost in loss record 99 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAED02: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 49 bytes in 1 blocks are possibly lost in loss record 100 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAED2B: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 49 bytes in 1 blocks are possibly lost in loss record 101 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAED54: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 49 bytes in 1 blocks are possibly lost in loss record 102 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489D91C: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB32AC: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13382==
>> ==13382== 52 bytes in 1 blocks are possibly lost in loss record 104 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13382==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13382==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 52 bytes in 1 blocks are possibly lost in loss record 105 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 52 bytes in 1 blocks are possibly lost in loss record 106 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BF02: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 52 bytes in 1 blocks are possibly lost in loss record 107 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EFC6E: addrchange_context_create (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x12E9E3: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 52 bytes in 1 blocks are possibly lost in loss record 108 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA98A: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48ED6EC: epoll_event_loop (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDF84: epoll_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EAF61: std_event_loop_once (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E61C2: _tevent_loop_once (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12FCB8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 53 bytes in 1 blocks are possibly lost in loss record 109 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DB71DB: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB760A: cli_tree_connect (in /lib/liblibsmb.so)
>> ==13382==    by 0x14D174: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 53 bytes in 1 blocks are possibly lost in loss record 110 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DB664A: cli_tcon_andx_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB6CCC: cli_tcon_andx_send (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB72F8: cli_tree_connect_send (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB760A: cli_tree_connect (in /lib/liblibsmb.so)
>> ==13382==    by 0x14D174: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==
>> ==13382== 55 bytes in 1 blocks are possibly lost in loss record 111 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48BB9FB: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 55 bytes in 1 blocks are possibly lost in loss record 112 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x5664278: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13382==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 113 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EB458: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 114 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 115 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 116 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 117 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 118 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13382==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 119 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBBDD: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13382==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 120 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48BB903: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 121 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x12E19B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13382==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 56 bytes in 1 blocks are possibly lost in loss record 122 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x12E296: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13382==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 57 bytes in 1 blocks are possibly lost in loss record 123 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52F8760: set_remote_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x12F154: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 57 bytes in 1 blocks are possibly lost in loss record 124 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13382==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13382==    by 0x12F682: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 57 bytes in 1 blocks are possibly lost in loss record 125 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAE9A8: cli_set_domain (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DAEB39: cli_init_creds (in /lib/liblibsmb.so)
>> ==13382==    by 0x14CB68: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 57 bytes in 1 blocks are possibly lost in loss record 126 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x1500A7: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13382==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13382==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 127 of 298
>> ==13382==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13382==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4882A35: talloc_stackframe_internal (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x4882B4D: _talloc_stackframe (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x56BBE82: dbwrap_fetch_locked_internal (in
>/lib/libdbwrap.so)
>> ==13382==    by 0x56BBF8D: dbwrap_fetch_locked (in /lib/libdbwrap.so)
>> ==13382==    by 0x56BCD2B: dbwrap_change_int32_atomic_action (in
>/lib/libdbwrap.so)
>> ==13382==    by 0x56BD63D: dbwrap_trans_do (in /lib/libdbwrap.so)
>> ==13382==    by 0x56BCF9A: dbwrap_trans_change_int32_atomic_bystring
>(in /lib/libdbwrap.so)
>> ==13382==    by 0x5346A77: get_rand_seed (in /lib/libsecrets3.so)
>> ==13382==    by 0x4887F8B: get_rand_reseed_data (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 128 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 129 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 130 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 131 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 132 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 133 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 134 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA3FE: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 60 bytes in 1 blocks are possibly lost in loss record 135 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x12E94C: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 61 bytes in 1 blocks are possibly lost in loss record 136 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x56642D7: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13382==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 61 bytes in 1 blocks are possibly lost in loss record 137 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAEEF6: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 61 bytes in 1 blocks are possibly lost in loss record 138 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x1500F0: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13382==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13382==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 61 bytes in 1 blocks are possibly lost in loss record 139 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x15013B: set_dc_type_and_flags_connect (in
>/sbin/winbindd)
>> ==13382==    by 0x1504A3: set_dc_type_and_flags (in /sbin/winbindd)
>> ==13382==    by 0x14F52D: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x48EAABA: tevent_common_check_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 62 bytes in 1 blocks are possibly lost in loss record 140 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 62 bytes in 1 blocks are possibly lost in loss record 141 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 62 bytes in 1 blocks are possibly lost in loss record 142 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 62 bytes in 1 blocks are possibly lost in loss record 143 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13382==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 62 bytes in 1 blocks are possibly lost in loss record 144 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13382==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 62 bytes in 1 blocks are possibly lost in loss record 145 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489DAA9: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x57B5F54: pull_ascii_base_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x57B650C: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB6EC1: cli_tcon_andx_done (in /lib/liblibsmb.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 63 bytes in 1 blocks are possibly lost in loss record 146 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52F859E: set_local_machine_name (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x53172DF: init_names (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F840: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 63 bytes in 1 blocks are possibly lost in loss record 147 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x1307D8: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 63 bytes in 1 blocks are possibly lost in loss record 148 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAEAA2: cli_set_password (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DAEBD8: cli_init_creds (in /lib/liblibsmb.so)
>> ==13382==    by 0x14CB68: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 149 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E84CB: tevent_select_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5663: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 150 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E9D79: tevent_poll_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5668: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 151 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E9DA9: tevent_poll_mt_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E566D: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 152 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDFB3: tevent_epoll_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5672: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 153 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E556B: tevent_register_backend (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EB2C3: tevent_standard_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5677: tevent_backend_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5697: tevent_find_ops_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C58: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 154 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EB06F: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 155 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13382==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13382==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 156 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EB54F: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 157 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 158 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 159 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 160 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 161 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 162 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 163 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 164 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B1EA: _talloc_reference_loc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA457: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 165 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BCAB: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 166 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48BB875: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 167 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4883B51: data_blob_talloc_named (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x4D7D90A: smb1cli_session_set_session_key (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DB394F: cli_session_setup_kerberos_done (in
>/lib/liblibsmb.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x4DB3358: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 168 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D6F204: smb_signing_activate (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4D7313A: smb1cli_conn_activate_signing (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DB39B0: cli_session_setup_kerberos_done (in
>/lib/liblibsmb.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x4DB3358: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 64 bytes in 1 blocks are possibly lost in loss record 169 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAEA29: cli_set_username (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DAEB04: cli_init_creds (in /lib/liblibsmb.so)
>> ==13382==    by 0x14CB68: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 65 bytes in 1 blocks are possibly lost in loss record 170 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x14D7CC: dcip_to_name (in /sbin/winbindd)
>> ==13382==    by 0x14E551: find_new_dc (in /sbin/winbindd)
>> ==13382==    by 0x14EE2A: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 65 bytes in 1 blocks are possibly lost in loss record 171 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D727F5: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 65 bytes in 1 blocks are possibly lost in loss record 172 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7034: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x4D728B6: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 174 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAC48: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 175 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52FB1A3: register_msg_pool_usage (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAC56: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 176 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52FB313: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 177 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52FB342: register_dmalloc_msgs (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAC61: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 178 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F39EE: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 179 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3A1D: debug_register_msgs (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAC6C: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 180 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13382==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13382==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 181 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x56BFE29: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 182 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E5BC: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 183 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E5EB: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 184 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E61A: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 185 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E649: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 186 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E678: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 187 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E6A9: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 188 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E6DA: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 189 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E709: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 190 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E738: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 191 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E767: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 192 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAF11: messaging_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E796: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 193 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48BB96F: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 68 bytes in 1 blocks are possibly lost in loss record 194 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x536817E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13382==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 70 bytes in 1 blocks are possibly lost in loss record 195 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489F59A: strupper_talloc_n_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x489F6DE: strupper_talloc_n (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x489F724: strupper_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x52E37C3: myhostname_upper (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x53048FA: init_globals (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314536: lp_load_initial_only (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F539: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 196 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48ED9F2: epoll_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EB1D7: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6502: tevent_re_initialise (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52E1A9E: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 197 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 198 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 199 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 200 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 201 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 202 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 203 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13382==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 204 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13382==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 205 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13382==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 206 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4AEBB8A: _dcerpc_binding_handle_create (in
>/lib/libdcerpc-binding.so.0.0.1)
>> ==13382==    by 0x165033: wbint_binding_handle (in /sbin/winbindd)
>> ==13382==    by 0x1610C4: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13382==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 72 bytes in 1 blocks are possibly lost in loss record 207 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E700F: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x4D728B6: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 75 bytes in 1 blocks are possibly lost in loss record 208 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489025D: debug_set_logfile (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x5314D73: lp_set_logfile (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x4875B02: set_logfile (in /lib/libpopt_samba3.so)
>> ==13382==    by 0x4875DBC: popt_common_callback (in
>/lib/libpopt_samba3.so)
>> ==13382==    by 0x542FE4C: invokeCallbacksOPTION (popt.c:151)
>> ==13382==    by 0x542FE90: invokeCallbacksOPTION (popt.c:133)
>> ==13382==    by 0x5430D2D: poptGetNextOpt (popt.c:990)
>> ==13382==    by 0x12F310: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 76 bytes in 1 blocks are possibly lost in loss record 209 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13382==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 80 bytes in 1 blocks are possibly lost in loss record 210 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48BB83B: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 80 bytes in 1 blocks are possibly lost in loss record 211 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D6E766: smb_signing_init_ex (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4D6E807: smb_signing_init (in /lib/libcli_smb_common.so)
>> ==13382==    by 0x4D729E8: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==
>> ==13382== 81 bytes in 1 blocks are possibly lost in loss record 212 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13382==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13382==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 84 bytes in 1 blocks are possibly lost in loss record 215 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x52EB62E: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 84 bytes in 1 blocks are possibly lost in loss record 216 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x576BCD0: tdb_wrap_private_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x576BF86: tdb_wrap_open (in /lib/libtdb-wrap.so)
>> ==13382==    by 0x56BFED5: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 218 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EB0DA: std_event_context_init (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C0D: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 219 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x52EAB0E: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 220 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 221 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 222 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 223 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 224 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 225 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 226 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA385: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 227 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 228 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 229 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B334: setup_domain_child (in /sbin/winbindd)
>> ==13382==    by 0x130D2F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 230 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B3BB: init_idmap_child (in /sbin/winbindd)
>> ==13382==    by 0x12E841: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 231 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x16101E: setup_child (in /sbin/winbindd)
>> ==13382==    by 0x16B41F: init_locator_child (in /sbin/winbindd)
>> ==13382==    by 0x12E846: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 232 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 233 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E76C3: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13382==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 88 bytes in 1 blocks are possibly lost in loss record 234 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5F0C: _tevent_create_immediate (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E7073: _tevent_queue_create (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x4D728B6: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==
>> ==13382== 92 bytes in 1 blocks are possibly lost in loss record 235 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 92 bytes in 1 blocks are possibly lost in loss record 236 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 92 bytes in 1 blocks are possibly lost in loss record 237 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF0B: _talloc_zero_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x130788: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 92 bytes in 1 blocks are possibly lost in loss record 238 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D7E74D: smbXcli_tcon_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF7A: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 92 bytes in 1 blocks are possibly lost in loss record 239 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D7D27C: smbXcli_session_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEFB5: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 100 bytes in 1 blocks are possibly lost in loss record 240 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EA530: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 100 bytes in 1 blocks are possibly lost in loss record 241 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x535B319: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13382==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 100 bytes in 1 blocks are possibly lost in loss record 242 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12E250: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13382==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 100 bytes in 1 blocks are possibly lost in loss record 243 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E67B5: tevent_common_add_fd (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48EDD70: epoll_event_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5D02: _tevent_add_fd (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12E34B: winbindd_setup_listeners (in /sbin/winbindd)
>> ==13382==    by 0x12FC0F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 104 bytes in 2 blocks are possibly lost in loss record 246 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13382==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13382==    by 0x12F682: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 107 bytes in 2 blocks are possibly lost in loss record 248 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x488C430: next_token_internal_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x488C50F: next_token_talloc (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x533B995: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13382==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13382==
>> ==13382== 108 bytes in 1 blocks are possibly lost in loss record 249 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 108 bytes in 1 blocks are possibly lost in loss record 250 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7675: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x535B28D: recvfrom_send (in /lib/libsmb_transport.so)
>> ==13382==    by 0x52EFEA9: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 251 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13382==    by 0x53050D5: init_globals (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13382==    by 0x12F682: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 252 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13382==    by 0x5305155: init_globals (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5313EDA: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BF2E: reload_services_file (in /sbin/winbindd)
>> ==13382==    by 0x12F682: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 253 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x533B7B5: str_list_make_v3 (in /lib/libsamba3-util.so)
>> ==13382==    by 0x530FD4A: lp_do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5310204: do_parameter (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x4889FAC: Parameter (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A07D: Parse (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x488A397: pm_process (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x5313FCC: lp_load_ex (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5314579: lp_load_global (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 254 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D361E3: add_sid_to_array (in /lib/libsamba-security.so)
>> ==13382==    by 0x4D362C8: add_sid_to_array_unique (in /lib/libsamba-
>security.so)
>> ==13382==    by 0x48BD037: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 255 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x536822E: dup_nt_token (in /lib/libsmbregistry.so)
>> ==13382==    by 0x48BBC3C: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 256 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D7D2AC: smbXcli_session_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEFB5: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 116 bytes in 1 blocks are possibly lost in loss record 257 of 298
>> ==13382==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13382==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48D707D: smb_register_ndr_interface (in
>/lib/libmsrpc3.so)
>> ==13382==    by 0x48D730B: initialize_interfaces (in /lib/libmsrpc3.so)
>> ==13382==    by 0x48D7345: get_iface_from_syntax (in /lib/libmsrpc3.so)
>> ==13382==    by 0x48D73DD: get_pipe_name_from_syntax (in
>/lib/libmsrpc3.so)
>> ==13382==    by 0x48D74F8: rpc_transport_np_init_send (in
>/lib/libmsrpc3.so)
>> ==13382==    by 0x48D7800: rpc_transport_np_init (in /lib/libmsrpc3.so)
>> ==13382==    by 0x48D5DDE: rpc_pipe_open_np (in /lib/libmsrpc3.so)
>> ==13382==    by 0x48D5FF8: cli_rpc_pipe_open (in /lib/libmsrpc3.so)
>> ==13382==    by 0x48D6050: cli_rpc_pipe_open_noauth_transport (in
>/lib/libmsrpc3.so)
>> ==13382==
>> ==13382== 120 bytes in 1 blocks are possibly lost in loss record 258 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E5BC2: tevent_context_init_ops (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5C82: tevent_context_init_byname (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E5CAD: tevent_context_init (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48945F7: samba_tevent_context_init (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x12BDEF: winbind_event_context (in /sbin/winbindd)
>> ==13382==    by 0x12BE42: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 132 bytes in 1 blocks are possibly lost in loss record 266 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x5346B71: secrets_init_path (in /lib/libsecrets3.so)
>> ==13382==    by 0x5346C79: secrets_init (in /lib/libsecrets3.so)
>> ==13382==    by 0x12F85D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 132 bytes in 1 blocks are possibly lost in loss record 267 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x56BFDA7: db_open_tdb (in /lib/libdbwrap.so)
>> ==13382==    by 0x56C0B15: dbwrap_local_open (in /lib/libdbwrap.so)
>> ==13382==    by 0x52F0771: db_open (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EEC43: serverid_db (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EECD0: serverid_register (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12E528: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 140 bytes in 1 blocks are possibly lost in loss record 268 of 298
>> ==13382==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13382==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x488FB3A: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 140 bytes in 1 blocks are possibly lost in loss record 269 of 298
>> ==13382==    at 0x4827477: realloc (vg_replace_malloc.c:662)
>> ==13382==    by 0x495CC9D: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x488FBA2: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 140 bytes in 1 blocks are possibly lost in loss record 270 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x566423D: make_user_info_SamBaseInfo (in
>/lib/libauth_sam_reply.so)
>> ==13382==    by 0x48BBB76: create_local_token (in /lib/libauth.so)
>> ==13382==    by 0x48BD099: make_new_session_info_system (in
>/lib/libauth.so)
>> ==13382==    by 0x48BDA8F: init_system_session_info (in /lib/libauth.so)
>> ==13382==    by 0x12FB2D: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 168 bytes in 1 blocks are possibly lost in loss record 271 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D704: _talloc_memdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4883B51: data_blob_talloc_named (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x4D7B853: smbXcli_negprot_smb1_done (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E77F5: tevent_req_finish (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E781B: _tevent_req_done (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x4D76808: smb1cli_conn_dispatch_incoming (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4D7543D: smbXcli_conn_received (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x48E77C2: _tevent_req_notify_callback (in
>/lib/libtevent.so.0.9.18)
>> ==13382==
>> ==13382== 176 bytes in 1 blocks are possibly lost in loss record 272 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4DAECB1: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EB398: messaging_tdb_signal_handler (in
>/lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 274 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 275 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAD38: messaging_reinit (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52E1B38: reinit_after_fork (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F9F8: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 276 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C52E: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 277 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C5F1: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 278 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C6B4: winbindd_setup_sig_term_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E428: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 279 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12C943: winbindd_setup_sig_hup_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E46E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 280 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA0A: winbindd_setup_sig_chld_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E486: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 188 bytes in 1 blocks are possibly lost in loss record 281 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C693: talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA697: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x12CA94: winbindd_setup_sig_usr2_handler (in
>/sbin/winbindd)
>> ==13382==    by 0x12E49E: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 242 bytes in 1 blocks are possibly lost in loss record 282 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489DAA9: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB3222: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13382==
>> ==13382== 254 bytes in 1 blocks are possibly lost in loss record 283 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489DAA9: convert_string_talloc_handle (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x489DEFA: convert_string_talloc (in /lib/libsamba-
>util.so.0.0.1)
>> ==13382==    by 0x57B62A0: pull_ucs2_base_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x57B64E3: pull_string_talloc (in /lib/libCHARSET3.so)
>> ==13382==    by 0x4DD739E: clistr_pull_talloc (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DAFA90: smb_bytes_talloc_string (in /lib/liblibsmb.so)
>> ==13382==    by 0x4DB3198: cli_sesssetup_blob_done (in /lib/liblibsmb.so)
>> ==13382==
>> ==13382== 304 bytes in 1 blocks are possibly lost in loss record 284 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F134: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 304 bytes in 1 blocks are possibly lost in loss record 285 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F345: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 304 bytes in 1 blocks are possibly lost in loss record 286 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495C801: _talloc_realloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DF60: _talloc_realloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4884396: afdgets (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x52F3BEB: get_linux_corepath (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3C78: get_corepath (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52F3DCC: dump_core_setup (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12F5CF: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 428 bytes in 1 blocks are possibly lost in loss record 287 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x13198F: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 428 bytes in 1 blocks are possibly lost in loss record 288 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x1319B9: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 428 bytes in 1 blocks are possibly lost in loss record 289 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x13074F: add_trusted_domain (in /sbin/winbindd)
>> ==13382==    by 0x131A60: init_domain_list (in /sbin/winbindd)
>> ==13382==    by 0x12E7D7: winbindd_register_handlers (in /sbin/winbindd)
>> ==13382==    by 0x12FB1F: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 544 bytes in 1 blocks are possibly lost in loss record 290 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x4D727A8: smbXcli_conn_create (in
>/lib/libcli_smb_common.so)
>> ==13382==    by 0x4DAEF3F: cli_state_create (in /lib/liblibsmb.so)
>> ==13382==    by 0x14C7B0: cm_prepare_connection (in /sbin/winbindd)
>> ==13382==    by 0x14EF12: cm_open_connection (in /sbin/winbindd)
>> ==13382==    by 0x14F502: init_dc_connection_network (in /sbin/winbindd)
>> ==13382==    by 0x14A8EB: msg_try_to_go_online (in /sbin/winbindd)
>> ==13382==    by 0x52EB2D1: messaging_dispatch_rec (in
>/lib/libsmbconf.so.0)
>> ==13382==    by 0x52EC827: message_dispatch (in /lib/libsmbconf.so.0)
>> ==13382==
>> ==13382== 1,072 bytes in 1 blocks are possibly lost in loss record 292 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495DEC1: _talloc_array (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x489011B: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 1,254 bytes in 23 blocks are possibly lost in loss record 296 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D75E: __talloc_strlendup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D7FE: talloc_strdup (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x488FBDF: debug_add_class (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x48900E8: debug_init (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x489018D: setup_logging (in /lib/libsamba-util.so.0.0.1)
>> ==13382==    by 0x12F0DF: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 1,988 bytes in 1 blocks are possibly lost in loss record 297 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48EA343: tevent_common_add_signal (in
>/lib/libtevent.so.0.9.18)
>> ==13382==    by 0x48E6009: _tevent_add_signal (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EB743: messaging_tdb_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x52EAB81: messaging_init (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12BE52: winbind_messaging_context (in /sbin/winbindd)
>> ==13382==    by 0x12F666: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== 8,512 bytes in 1 blocks are possibly lost in loss record 298 of 298
>> ==13382==    at 0x4827282: malloc (vg_replace_malloc.c:270)
>> ==13382==    by 0x495AE10: __talloc (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495B168: _talloc_named_const (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x495D6AD: _talloc_zero (in /lib/libtalloc.so.2.0.8)
>> ==13382==    by 0x48E7715: _tevent_req_create (in /lib/libtevent.so.0.9.18)
>> ==13382==    by 0x52EFE19: addrchange_send (in /lib/libsmbconf.so.0)
>> ==13382==    by 0x12EA9A: winbindd_init_addrchange (in /sbin/winbindd)
>> ==13382==    by 0x12FC0A: main (in /sbin/winbindd)
>> ==13382==
>> ==13382== LEAK SUMMARY:
>> ==13382==    definitely lost: 76 bytes in 4 blocks
>> ==13382==    indirectly lost: 0 bytes in 0 blocks
>> ==13382==      possibly lost: 29,912 bytes in 212 blocks
>> ==13382==    still reachable: 7,409 bytes in 117 blocks
>> ==13382==         suppressed: 0 bytes in 0 blocks
>> ==13382== Reachable blocks (those to which a pointer was found) are not
>shown.
>> ==13382== To see them, rerun with: --leak-check=full --show-
>reachable=yes
>> ==13382==
>> ==13382== For counts of detected and suppressed errors, rerun with: -v
>> ==13382== Use --track-origins=yes to see where uninitialised values come
>from
>> ==13382== ERROR SUMMARY: 1217 errors from 197 contexts (suppressed:
>205 from 10)
>
>> 80000000-8011d000 r-xp 00000000 07:09 1577990
>/data/runtime/jails/samba.vc0/sbin/winbindd
>> Size:               1140 kB
>> Rss:                 288 kB
>> Shared_Clean:        208 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        80 kB
>> Private_Dirty:         0 kB
>> Referenced:          288 kB
>> 8011d000-80120000 rw-p 0011d000 07:09 1577990
>/data/runtime/jails/samba.vc0/sbin/winbindd
>> Size:                 12 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        12 kB
>> Referenced:           12 kB
>> 80120000-80273000 rw-p 80120000 00:00 0          [heap]
>> Size:               1356 kB
>> Rss:                1204 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         96 kB
>> Private_Clean:         0 kB
>> Private_Dirty:      1108 kB
>> Referenced:         1108 kB
>> b62c3000-b643f000 rw-s 00000000 07:09 1586205
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/winbindd_cache.tdb
>> Size:               1520 kB
>> Rss:                1392 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:      1376 kB
>> Private_Dirty:         0 kB
>> Referenced:         1392 kB
>> b643f000-b6444000 r-xp 00000000 07:09 1578164
>/data/runtime/jails/samba.vc0/lib/libnss_dns.so.2
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b6444000-b6445000 r--p 00004000 07:09 1578164
>/data/runtime/jails/samba.vc0/lib/libnss_dns.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6445000-b6446000 rw-p 00005000 07:09 1578164
>/data/runtime/jails/samba.vc0/lib/libnss_dns.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6446000-b6452000 r-xp 00000000 07:09 1578165
>/data/runtime/jails/samba.vc0/lib/libnss_files.so.2
>> Size:                 48 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b6452000-b6453000 r--p 0000b000 07:09 1578165
>/data/runtime/jails/samba.vc0/lib/libnss_files.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6453000-b6454000 rw-p 0000c000 07:09 1578165
>/data/runtime/jails/samba.vc0/lib/libnss_files.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6454000-b6456000 r-xp 00000000 07:09 1586164
>/data/runtime/jails/samba.vc0/usr/lib/gconv/UTF-16.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6456000-b6457000 r--p 00001000 07:09 1586164
>/data/runtime/jails/samba.vc0/usr/lib/gconv/UTF-16.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6457000-b6458000 rw-p 00002000 07:09 1586164
>/data/runtime/jails/samba.vc0/usr/lib/gconv/UTF-16.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6458000-b645a000 r-xp 00000000 07:09 1586154
>/data/runtime/jails/samba.vc0/usr/lib/gconv/IBM850.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b645a000-b645b000 r--p 00001000 07:09 1586154
>/data/runtime/jails/samba.vc0/usr/lib/gconv/IBM850.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b645b000-b645c000 rw-p 00002000 07:09 1586154
>/data/runtime/jails/samba.vc0/usr/lib/gconv/IBM850.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b645c000-b64c4000 rw-s 00000000 07:09 1586199
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/gencache_notrans.tdb
>> Size:                416 kB
>> Rss:                  20 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         8 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b64c4000-b652f000 rw-s 00000000 07:09 1586198
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/gencache.tdb
>> Size:                428 kB
>> Rss:                  20 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         8 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b652f000-b6533000 rw-s 00000000 07:09 1586196
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/messages.tdb
>> Size:                 16 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b653b000-b6c02000 rw-s 00000000 07:09 1586208
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/netsamlogon_cache.td
>b
>> Size:               6940 kB
>> Rss:                5980 kB
>> Shared_Clean:       5980 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:         5980 kB
>> b6c02000-b6c04000 rw-s 00000000 07:09 1586207
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/serverid.tdb
>> Size:                  8 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6c05000-b6c6c000 rw-s 00000000 07:09 1586197
>/data/runtime/jails/samba.vc0/var/lib/.7.winbindd/secrets.tdb
>> Size:                412 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b6c6c000-b6c73000 rw-p b6c6c000 00:00 0
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         24 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:           24 kB
>> b6c73000-b6c77000 r-xp 00000000 07:09 1578173
>/data/runtime/jails/samba.vc0/lib/libattr.so.1
>> Size:                 16 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c77000-b6c78000 r--p 00003000 07:09 1578173
>/data/runtime/jails/samba.vc0/lib/libattr.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c78000-b6c79000 rw-p 00004000 07:09 1578173
>/data/runtime/jails/samba.vc0/lib/libattr.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6c79000-b6c7a000 rw-p b6c79000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c7a000-b6c92000 r-xp 00000000 07:09 1578090
>/data/runtime/jails/samba.vc0/lib/libntdb.so.0.9
>> Size:                 96 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c92000-b6c93000 rw-p 00017000 07:09 1578090
>/data/runtime/jails/samba.vc0/lib/libntdb.so.0.9
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c93000-b6c95000 r-xp 00000000 07:09 1578147
>/data/runtime/jails/samba.vc0/lib/libutil_ntdb.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c95000-b6c96000 rw-p 00001000 07:09 1578147
>/data/runtime/jails/samba.vc0/lib/libutil_ntdb.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c96000-b6ce5000 r-xp 00000000 07:09 1578183
>/data/runtime/jails/samba.vc0/lib/libfreebl3.so
>> Size:                316 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ce5000-b6ce6000 r--p 0004e000 07:09 1578183
>/data/runtime/jails/samba.vc0/lib/libfreebl3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ce6000-b6ce7000 rw-p 0004f000 07:09 1578183
>/data/runtime/jails/samba.vc0/lib/libfreebl3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6ce7000-b6cec000 rw-p b6ce7000 00:00 0
>> Size:                 20 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6cec000-b6cee000 r-xp 00000000 07:09 1578154
>/data/runtime/jails/samba.vc0/lib/libwinbind-client.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6cee000-b6cef000 rw-p 00001000 07:09 1578154
>/data/runtime/jails/samba.vc0/lib/libwinbind-client.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6cef000-b6d15000 r-xp 00000000 07:09 1578063
>/data/runtime/jails/samba.vc0/lib/libldbsamba.so
>> Size:                152 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6d15000-b6d17000 rw-p 00025000 07:09 1578063
>/data/runtime/jails/samba.vc0/lib/libldbsamba.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6d17000-b6d31000 r-xp 00000000 07:09 1578115
>/data/runtime/jails/samba.vc0/lib/libsamdb-common.so
>> Size:                104 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6d31000-b6d32000 rw-p 00019000 07:09 1578115
>/data/runtime/jails/samba.vc0/lib/libsamdb-common.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6d32000-b6f0e000 r-xp 00000000 07:09 1578160
>/data/runtime/jails/samba.vc0/lib/libcrypto.so.1.0.0
>> Size:               1904 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6f0e000-b6f25000 rw-p 001dc000 07:09 1578160
>/data/runtime/jails/samba.vc0/lib/libcrypto.so.1.0.0
>> Size:                 92 kB
>> Rss:                  92 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         92 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6f25000-b6f2a000 rw-p b6f25000 00:00 0
>> Size:                 20 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         12 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6f2a000-b6f8b000 r-xp 00000000 07:09 1578167
>/data/runtime/jails/samba.vc0/lib/libssl.so.1.0.0
>> Size:                388 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6f8b000-b6f90000 rw-p 00061000 07:09 1578167
>/data/runtime/jails/samba.vc0/lib/libssl.so.1.0.0
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         20 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6f90000-b6fa5000 r-xp 00000000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                 84 kB
>> Rss:                  56 kB
>> Shared_Clean:         56 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           56 kB
>> b6fa5000-b6fa6000 ---p 00015000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                  4 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6fa6000-b6fa7000 r--p 00015000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fa7000-b6fa8000 rw-p 00016000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6fa8000-b6faa000 rw-p b6fa8000 00:00 0
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6faa000-b6faf000 r-xp 00000000 07:09 1578053
>/data/runtime/jails/samba.vc0/lib/libkrb5support.so.0.1
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:         20 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b6faf000-b6fb0000 rw-p 00004000 07:09 1578053
>/data/runtime/jails/samba.vc0/lib/libkrb5support.so.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6fb0000-b6fb3000 r-xp 00000000 07:09 1578157
>/data/runtime/jails/samba.vc0/lib/libcap.so.2
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb3000-b6fb4000 rw-p 00002000 07:09 1578157
>/data/runtime/jails/samba.vc0/lib/libcap.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb4000-b6fb5000 rw-p b6fb4000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6fb5000-b6fb6000 r-xp 00000000 07:09 1578149
>/data/runtime/jails/samba.vc0/lib/libutil_setid.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb6000-b6fb7000 rw-p 00000000 07:09 1578149
>/data/runtime/jails/samba.vc0/lib/libutil_setid.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb7000-b6fb8000 r-xp 00000000 07:09 1578148
>/data/runtime/jails/samba.vc0/lib/libutil_reg.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb8000-b6fb9000 rw-p 00000000 07:09 1578148
>/data/runtime/jails/samba.vc0/lib/libutil_reg.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb9000-b6fbe000 r-xp 00000000 07:09 1578009
>/data/runtime/jails/samba.vc0/lib/libccan.so
>> Size:                 20 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fbe000-b6fbf000 rw-p 00004000 07:09 1578009
>/data/runtime/jails/samba.vc0/lib/libccan.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fbf000-b6fc0000 r-xp 00000000 07:09 1578043
>/data/runtime/jails/samba.vc0/lib/libinterfaces.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fc0000-b6fc1000 rw-p 00001000 07:09 1578043
>/data/runtime/jails/samba.vc0/lib/libinterfaces.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fc1000-b6fef000 r-xp 00000000 07:09 1578062
>/data/runtime/jails/samba.vc0/lib/libldb.so.1.1.16
>> Size:                184 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b6fef000-b6ff0000 rw-p 0002d000 07:09 1578062
>/data/runtime/jails/samba.vc0/lib/libldb.so.1.1.16
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ff0000-b6ff1000 rw-p b6ff0000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ff1000-b6ffa000 r-xp 00000000 07:09 1578012
>/data/runtime/jails/samba.vc0/lib/libcli-nbt.so
>> Size:                 36 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6ffa000-b6ffb000 rw-p 00009000 07:09 1578012
>/data/runtime/jails/samba.vc0/lib/libcli-nbt.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ffb000-b6ffd000 r-xp 00000000 07:09 1577998
>/data/runtime/jails/samba.vc0/lib/libCHARSET3.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6ffd000-b6ffe000 rw-p 00001000 07:09 1577998
>/data/runtime/jails/samba.vc0/lib/libCHARSET3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ffe000-b7017000 r-xp 00000000 07:09 1578175
>/data/runtime/jails/samba.vc0/lib/libsasl2.so.2
>> Size:                100 kB
>> Rss:                  76 kB
>> Shared_Clean:         20 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        56 kB
>> Private_Dirty:         0 kB
>> Referenced:           76 kB
>> b7017000-b7018000 r--p 00018000 07:09 1578175
>/data/runtime/jails/samba.vc0/lib/libsasl2.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7018000-b7019000 rw-p 00019000 07:09 1578175
>/data/runtime/jails/samba.vc0/lib/libsasl2.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7019000-b702d000 r-xp 00000000 07:09 1578118
>/data/runtime/jails/samba.vc0/lib/libsamdb.so.0.0.1
>> Size:                 80 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b702d000-b702e000 rw-p 00013000 07:09 1578118
>/data/runtime/jails/samba.vc0/lib/libsamdb.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b702e000-b702f000 rw-p b702e000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b702f000-b7041000 r-xp 00000000 07:09 1578158
>/data/runtime/jails/samba.vc0/lib/libz.so.1
>> Size:                 72 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7041000-b7042000 r--p 00011000 07:09 1578158
>/data/runtime/jails/samba.vc0/lib/libz.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7042000-b7043000 rw-p 00012000 07:09 1578158
>/data/runtime/jails/samba.vc0/lib/libz.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b7043000-b7044000 r-xp 00000000 07:09 1578120
>/data/runtime/jails/samba.vc0/lib/libserver-role.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7044000-b7045000 rw-p 00000000 07:09 1578120
>/data/runtime/jails/samba.vc0/lib/libserver-role.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7045000-b7047000 r-xp 00000000 07:09 1578136
>/data/runtime/jails/samba.vc0/lib/libtdb-wrap.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7047000-b7048000 rw-p 00001000 07:09 1578136
>/data/runtime/jails/samba.vc0/lib/libtdb-wrap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7048000-b7049000 rw-p b7048000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7049000-b706c000 r-xp 00000000 07:09 1578046
>/data/runtime/jails/samba.vc0/lib/libk5crypto.so.3.1
>> Size:                140 kB
>> Rss:                 100 kB
>> Shared_Clean:        100 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:          100 kB
>> b706c000-b706d000 rw-p 00023000 07:09 1578046
>/data/runtime/jails/samba.vc0/lib/libk5crypto.so.3.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b706d000-b7071000 r-xp 00000000 07:09 1578130
>/data/runtime/jails/samba.vc0/lib/libsmbldaphelper.so
>> Size:                 16 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7071000-b7072000 rw-p 00003000 07:09 1578130
>/data/runtime/jails/samba.vc0/lib/libsmbldaphelper.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7072000-b707d000 r-xp 00000000 07:09 1578055
>/data/runtime/jails/samba.vc0/lib/liblber-2.4.so.2.5.6
>> Size:                 44 kB
>> Rss:                  44 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        28 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b707d000-b707e000 rw-p 0000a000 07:09 1578055
>/data/runtime/jails/samba.vc0/lib/liblber-2.4.so.2.5.6
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b707e000-b70af000 r-xp 00000000 07:09 1578040
>/data/runtime/jails/samba.vc0/lib/libgssapi_krb5.so.2.2
>> Size:                196 kB
>> Rss:                 164 kB
>> Shared_Clean:         32 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:       132 kB
>> Private_Dirty:         0 kB
>> Referenced:          164 kB
>> b70af000-b70b1000 rw-p 00031000 07:09 1578040
>/data/runtime/jails/samba.vc0/lib/libgssapi_krb5.so.2.2
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:            8 kB
>> b70b1000-b70cd000 r-xp 00000000 07:09 1578073
>/data/runtime/jails/samba.vc0/lib/libndr-nbt.so.0.0.1
>> Size:                112 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70cd000-b70ce000 rw-p 0001b000 07:09 1578073
>/data/runtime/jails/samba.vc0/lib/libndr-nbt.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70ce000-b70cf000 rw-p b70ce000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70cf000-b70d6000 r-xp 00000000 07:09 1578013
>/data/runtime/jails/samba.vc0/lib/libcli_cldap.so
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70d6000-b70d7000 rw-p 00006000 07:09 1578013
>/data/runtime/jails/samba.vc0/lib/libcli_cldap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70d7000-b70e0000 r-xp 00000000 07:09 1578129
>/data/runtime/jails/samba.vc0/lib/libsmbldap.so.0
>> Size:                 36 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b70e0000-b70e1000 rw-p 00008000 07:09 1578129
>/data/runtime/jails/samba.vc0/lib/libsmbldap.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70e1000-b70ed000 r-xp 00000000 07:09 1578001
>/data/runtime/jails/samba.vc0/lib/libaddns.so
>> Size:                 48 kB
>> Rss:                  28 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        16 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70ed000-b70ee000 rw-p 0000b000 07:09 1578001
>/data/runtime/jails/samba.vc0/lib/libaddns.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b70ee000-b70f9000 r-xp 00000000 07:09 1578022
>/data/runtime/jails/samba.vc0/lib/libdbwrap.so
>> Size:                 44 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70f9000-b70fa000 rw-p 0000b000 07:09 1578022
>/data/runtime/jails/samba.vc0/lib/libdbwrap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b70fa000-b70ff000 r-xp 00000000 07:09 1578003
>/data/runtime/jails/samba.vc0/lib/libasn1util.so
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:         20 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b70ff000-b7100000 rw-p 00004000 07:09 1578003
>/data/runtime/jails/samba.vc0/lib/libasn1util.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7100000-b7101000 rw-p b7100000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7101000-b7118000 r-xp 00000000 07:09 1578163
>/data/runtime/jails/samba.vc0/lib/libnsl.so.1
>> Size:                 92 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7118000-b7119000 r--p 00016000 07:09 1578163
>/data/runtime/jails/samba.vc0/lib/libnsl.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7119000-b711a000 rw-p 00017000 07:09 1578163
>/data/runtime/jails/samba.vc0/lib/libnsl.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b711a000-b711c000 rw-p b711a000 00:00 0
>> Size:                  8 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b711c000-b7123000 r-xp 00000000 07:09 1578159
>/data/runtime/jails/samba.vc0/lib/libcrypt.so.1
>> Size:                 28 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7123000-b7124000 r--p 00007000 07:09 1578159
>/data/runtime/jails/samba.vc0/lib/libcrypt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7124000-b7125000 rw-p 00008000 07:09 1578159
>/data/runtime/jails/samba.vc0/lib/libcrypt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b7125000-b714c000 rw-p b7125000 00:00 0
>> Size:                156 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b714c000-b714f000 r-xp 00000000 07:09 1578006
>/data/runtime/jails/samba.vc0/lib/libauth_sam_reply.so
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b714f000-b7150000 rw-p 00002000 07:09 1578006
>/data/runtime/jails/samba.vc0/lib/libauth_sam_reply.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7150000-b7152000 r-xp 00000000 07:09 1578106
>/data/runtime/jails/samba.vc0/lib/libsamba-modules.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7152000-b7153000 rw-p 00001000 07:09 1578106
>/data/runtime/jails/samba.vc0/lib/libsamba-modules.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7153000-b715d000 r-xp 00000000 07:09 1578070
>/data/runtime/jails/samba.vc0/lib/libndr-krb5pac.so.0.0.1
>> Size:                 40 kB
>> Rss:                  36 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:           36 kB
>> b715d000-b715e000 rw-p 00009000 07:09 1578070
>/data/runtime/jails/samba.vc0/lib/libndr-krb5pac.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b715e000-b715f000 rw-p b715e000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b715f000-b716a000 r-xp 00000000 07:09 1578153
>/data/runtime/jails/samba.vc0/lib/libwbclient.so.0.11
>> Size:                 44 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b716a000-b716b000 rw-p 0000b000 07:09 1578153
>/data/runtime/jails/samba.vc0/lib/libwbclient.so.0.11
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b716b000-b716c000 rw-p b716b000 00:00 0
>> Size:                  4 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b716c000-b717b000 r-xp 00000000 07:09 1578102
>/data/runtime/jails/samba.vc0/lib/libsamba-credentials.so.0.0.1
>> Size:                 60 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b717b000-b717c000 rw-p 0000e000 07:09 1578102
>/data/runtime/jails/samba.vc0/lib/libsamba-credentials.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b717c000-b7183000 r-xp 00000000 07:09 1578171
>/data/runtime/jails/samba.vc0/lib/librt.so.1
>> Size:                 28 kB
>> Rss:                  12 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           12 kB
>> b7183000-b7184000 r--p 00006000 07:09 1578171
>/data/runtime/jails/samba.vc0/lib/librt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7184000-b7185000 rw-p 00007000 07:09 1578171
>/data/runtime/jails/samba.vc0/lib/librt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7185000-b7187000 r-xp 00000000 07:09 1578146
>/data/runtime/jails/samba.vc0/lib/libutil_cmdline.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7187000-b7188000 rw-p 00001000 07:09 1578146
>/data/runtime/jails/samba.vc0/lib/libutil_cmdline.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7188000-b718b000 r-xp 00000000 07:09 1578162
>/data/runtime/jails/samba.vc0/lib/libdl.so.2
>> Size:                 12 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b718b000-b718c000 r--p 00002000 07:09 1578162
>/data/runtime/jails/samba.vc0/lib/libdl.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b718c000-b718d000 rw-p 00003000 07:09 1578162
>/data/runtime/jails/samba.vc0/lib/libdl.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b718d000-b718e000 rw-p b718d000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b718e000-b731e000 r-xp 00000000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:               1600 kB
>> Rss:                 572 kB
>> Shared_Clean:        488 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        84 kB
>> Private_Dirty:         0 kB
>> Referenced:          572 kB
>> b731e000-b731f000 ---p 00190000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:                  4 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b731f000-b7321000 r--p 00190000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7321000-b7322000 rw-p 00192000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7322000-b7325000 rw-p b7322000 00:00 0
>> Size:                 12 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        12 kB
>> Referenced:           12 kB
>> b7325000-b7361000 r-xp 00000000 07:09 1578058
>/data/runtime/jails/samba.vc0/lib/libldap-2.4.so.2.5.6
>> Size:                240 kB
>> Rss:                 164 kB
>> Shared_Clean:         40 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:       124 kB
>> Private_Dirty:         0 kB
>> Referenced:          164 kB
>> b7361000-b7363000 rw-p 0003b000 07:09 1578058
>/data/runtime/jails/samba.vc0/lib/libldap-2.4.so.2.5.6
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            8 kB
>> b7363000-b736b000 r-xp 00000000 07:09 1578182
>/data/runtime/jails/samba.vc0/lib/libpopt.so.0
>> Size:                 32 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b736b000-b736c000 rw-p 00007000 07:09 1578182
>/data/runtime/jails/samba.vc0/lib/libpopt.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b736c000-b736e000 r-xp 00000000 07:09 1578021
>/data/runtime/jails/samba.vc0/lib/libcom_err.so.3.0
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b736e000-b736f000 rw-p 00001000 07:09 1578021
>/data/runtime/jails/samba.vc0/lib/libcom_err.so.3.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b736f000-b7417000 r-xp 00000000 07:09 1578049
>/data/runtime/jails/samba.vc0/lib/libkrb5.so.3.3
>> Size:                672 kB
>> Rss:                 428 kB
>> Shared_Clean:        368 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        60 kB
>> Private_Dirty:         0 kB
>> Referenced:          428 kB
>> b7417000-b741d000 rw-p 000a8000 07:09 1578049
>/data/runtime/jails/samba.vc0/lib/libkrb5.so.3.3
>> Size:                 24 kB
>> Rss:                  24 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         16 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:           24 kB
>> b741d000-b741e000 r-xp 00000000 07:09 1578127
>/data/runtime/jails/samba.vc0/lib/libsmbd_shim.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b741e000-b741f000 rw-p 00000000 07:09 1578127
>/data/runtime/jails/samba.vc0/lib/libsmbd_shim.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b741f000-b7439000 r-xp 00000000 07:09 1578132
>/data/runtime/jails/samba.vc0/lib/libsmbregistry.so
>> Size:                104 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b7439000-b743a000 rw-p 0001a000 07:09 1578132
>/data/runtime/jails/samba.vc0/lib/libsmbregistry.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b743a000-b743b000 rw-p b743a000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b743b000-b743f000 r-xp 00000000 07:09 1578122
>/data/runtime/jails/samba.vc0/lib/libsmb_transport.so
>> Size:                 16 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b743f000-b7440000 rw-p 00003000 07:09 1578122
>/data/runtime/jails/samba.vc0/lib/libsmb_transport.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7440000-b744a000 r-xp 00000000 07:09 1578008
>/data/runtime/jails/samba.vc0/lib/libauthkrb5.so
>> Size:                 40 kB
>> Rss:                  28 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        12 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b744a000-b744b000 rw-p 00009000 07:09 1578008
>/data/runtime/jails/samba.vc0/lib/libauthkrb5.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b744b000-b7455000 r-xp 00000000 07:09 1578119
>/data/runtime/jails/samba.vc0/lib/libsecrets3.so
>> Size:                 40 kB
>> Rss:                  32 kB
>> Shared_Clean:         32 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           32 kB
>> b7455000-b7456000 rw-p 00009000 07:09 1578119
>/data/runtime/jails/samba.vc0/lib/libsecrets3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7456000-b7457000 r-xp 00000000 07:09 1578032
>/data/runtime/jails/samba.vc0/lib/libflag_mapping.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7457000-b7458000 rw-p 00000000 07:09 1578032
>/data/runtime/jails/samba.vc0/lib/libflag_mapping.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7458000-b7461000 r-xp 00000000 07:09 1578113
>/data/runtime/jails/samba.vc0/lib/libsamba3-util.so
>> Size:                 36 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b7461000-b7462000 rw-p 00008000 07:09 1578113
>/data/runtime/jails/samba.vc0/lib/libsamba3-util.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7462000-b7463000 rw-p b7462000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7463000-b74cd000 r-xp 00000000 07:09 1578124
>/data/runtime/jails/samba.vc0/lib/libsmbconf.so.0
>> Size:                424 kB
>> Rss:                 212 kB
>> Shared_Clean:        192 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:          212 kB
>> b74cd000-b74d4000 rw-p 0006a000 07:09 1578124
>/data/runtime/jails/samba.vc0/lib/libsmbconf.so.0
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         16 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        12 kB
>> Referenced:           12 kB
>> b74d4000-b74db000 r-xp 00000000 07:09 1578010
>/data/runtime/jails/samba.vc0/lib/libcli-ldap-common.so
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b74db000-b74dc000 rw-p 00006000 07:09 1578010
>/data/runtime/jails/samba.vc0/lib/libcli-ldap-common.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b74dc000-b74ee000 r-xp 00000000 07:09 1578138
>/data/runtime/jails/samba.vc0/lib/libtdb.so.1.2.12
>> Size:                 72 kB
>> Rss:                  68 kB
>> Shared_Clean:         68 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           68 kB
>> b74ee000-b74ef000 rw-p 00011000 07:09 1578138
>/data/runtime/jails/samba.vc0/lib/libtdb.so.1.2.12
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b74ef000-b74f1000 r-xp 00000000 07:09 1578150
>/data/runtime/jails/samba.vc0/lib/libutil_tdb.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b74f1000-b74f2000 rw-p 00001000 07:09 1578150
>/data/runtime/jails/samba.vc0/lib/libutil_tdb.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b74f2000-b795f000 r-xp 00000000 07:09 1578078
>/data/runtime/jails/samba.vc0/lib/libndr-standard.so.0.0.1
>> Size:               4532 kB
>> Rss:                 276 kB
>> Shared_Clean:        152 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:       124 kB
>> Private_Dirty:         0 kB
>> Referenced:          276 kB
>> b795f000-b7967000 rw-p 0046d000 07:09 1578078
>/data/runtime/jails/samba.vc0/lib/libndr-standard.so.0.0.1
>> Size:                 32 kB
>> Rss:                  32 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         24 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:           20 kB
>> b7967000-b798e000 r-xp 00000000 07:09 1578037
>/data/runtime/jails/samba.vc0/lib/libgse.so
>> Size:                156 kB
>> Rss:                 124 kB
>> Shared_Clean:         96 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        28 kB
>> Private_Dirty:         0 kB
>> Referenced:          124 kB
>> b798e000-b798f000 rw-p 00027000 07:09 1578037
>/data/runtime/jails/samba.vc0/lib/libgse.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b798f000-b7990000 rw-p b798f000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7990000-b79f7000 r-xp 00000000 07:09 1578066
>/data/runtime/jails/samba.vc0/lib/liblibsmb.so
>> Size:                412 kB
>> Rss:                 180 kB
>> Shared_Clean:        180 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:          180 kB
>> b79f7000-b79f8000 rw-p 00067000 07:09 1578066
>/data/runtime/jails/samba.vc0/lib/liblibsmb.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b79f8000-b7a0c000 r-xp 00000000 07:09 1578109
>/data/runtime/jails/samba.vc0/lib/libsamba-sockets.so
>> Size:                 80 kB
>> Rss:                  44 kB
>> Shared_Clean:         44 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b7a0c000-b7a0d000 rw-p 00013000 07:09 1578109
>/data/runtime/jails/samba.vc0/lib/libsamba-sockets.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7a0d000-b7a2f000 r-xp 00000000 07:09 1578014
>/data/runtime/jails/samba.vc0/lib/libcli_smb_common.so
>> Size:                136 kB
>> Rss:                  88 kB
>> Shared_Clean:         88 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           88 kB
>> b7a2f000-b7a30000 rw-p 00022000 07:09 1578014
>/data/runtime/jails/samba.vc0/lib/libcli_smb_common.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7a30000-b7a53000 r-xp 00000000 07:09 1578035
>/data/runtime/jails/samba.vc0/lib/libgensec.so.0.0.1
>> Size:                140 kB
>> Rss:                  76 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        48 kB
>> Private_Dirty:         0 kB
>> Referenced:           76 kB
>> b7a53000-b7a54000 rw-p 00023000 07:09 1578035
>/data/runtime/jails/samba.vc0/lib/libgensec.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7a54000-b7a6f000 r-xp 00000000 07:09 1578108
>/data/runtime/jails/samba.vc0/lib/libsamba-security.so
>> Size:                108 kB
>> Rss:                  44 kB
>> Shared_Clean:         44 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b7a6f000-b7a70000 rw-p 0001a000 07:09 1578108
>/data/runtime/jails/samba.vc0/lib/libsamba-security.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7a70000-b7a71000 rw-p b7a70000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7a71000-b7ac4000 r-xp 00000000 07:09 1578030
>/data/runtime/jails/samba.vc0/lib/liberrors.so
>> Size:                332 kB
>> Rss:                  20 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b7ac4000-b7ad0000 rw-p 00053000 07:09 1578030
>/data/runtime/jails/samba.vc0/lib/liberrors.so
>> Size:                 48 kB
>> Rss:                  48 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         48 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7ad0000-b7c01000 r-xp 00000000 07:09 1578074
>/data/runtime/jails/samba.vc0/lib/libndr-samba.so
>> Size:               1220 kB
>> Rss:                  64 kB
>> Shared_Clean:         40 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        24 kB
>> Private_Dirty:         0 kB
>> Referenced:           64 kB
>> b7c01000-b7c04000 rw-p 00131000 07:09 1578074
>/data/runtime/jails/samba.vc0/lib/libndr-samba.so
>> Size:                 12 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            8 kB
>> b7c04000-b7c06000 r-xp 00000000 07:09 1578145
>/data/runtime/jails/samba.vc0/lib/libtrusts_util.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c06000-b7c07000 rw-p 00001000 07:09 1578145
>/data/runtime/jails/samba.vc0/lib/libtrusts_util.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c07000-b7c0b000 r-xp 00000000 07:09 1578065
>/data/runtime/jails/samba.vc0/lib/liblibcli_netlogon3.so
>> Size:                 16 kB
>> Rss:                  16 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b7c0b000-b7c0c000 rw-p 00003000 07:09 1578065
>/data/runtime/jails/samba.vc0/lib/liblibcli_netlogon3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7c0c000-b7c0f000 r-xp 00000000 07:09 1578064
>/data/runtime/jails/samba.vc0/lib/liblibcli_lsa3.so
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c0f000-b7c10000 rw-p 00002000 07:09 1578064
>/data/runtime/jails/samba.vc0/lib/liblibcli_lsa3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c10000-b7c3c000 r-xp 00000000 07:09 1578105
>/data/runtime/jails/samba.vc0/lib/libsamba-hostconfig.so.0.0.1
>> Size:                176 kB
>> Rss:                  44 kB
>> Shared_Clean:         40 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b7c3c000-b7c41000 rw-p 0002c000 07:09 1578105
>/data/runtime/jails/samba.vc0/lib/libsamba-hostconfig.so.0.0.1
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         16 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7c41000-b7c42000 rw-p b7c41000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c42000-b7c43000 r-xp 00000000 07:09 1578099
>/data/runtime/jails/samba.vc0/lib/libreplace.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c43000-b7c44000 rw-p 00000000 07:09 1578099
>/data/runtime/jails/samba.vc0/lib/libreplace.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c44000-b7ca6000 r-xp 00000000 07:09 1578092
>/data/runtime/jails/samba.vc0/lib/libpdb.so.0
>> Size:                392 kB
>> Rss:                  56 kB
>> Shared_Clean:         56 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           56 kB
>> b7ca6000-b7ca7000 rw-p 00062000 07:09 1578092
>/data/runtime/jails/samba.vc0/lib/libpdb.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ca7000-b7cc2000 r-xp 00000000 07:09 1578025
>/data/runtime/jails/samba.vc0/lib/libdcerpc-binding.so.0.0.1
>> Size:                108 kB
>> Rss:                  64 kB
>> Shared_Clean:         60 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           64 kB
>> b7cc2000-b7cc3000 rw-p 0001a000 07:09 1578025
>/data/runtime/jails/samba.vc0/lib/libdcerpc-binding.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7cc3000-b7cca000 r-xp 00000000 07:09 1578087
>/data/runtime/jails/samba.vc0/lib/libnpa_tstream.so
>> Size:                 28 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7cca000-b7ccb000 rw-p 00006000 07:09 1578087
>/data/runtime/jails/samba.vc0/lib/libnpa_tstream.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7ccb000-b7e2a000 r-xp 00000000 07:09 1578026
>/data/runtime/jails/samba.vc0/lib/libdcerpc-samba.so
>> Size:               1404 kB
>> Rss:                 132 kB
>> Shared_Clean:         68 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        64 kB
>> Private_Dirty:         0 kB
>> Referenced:          132 kB
>> b7e2a000-b7e2c000 rw-p 0015f000 07:09 1578026
>/data/runtime/jails/samba.vc0/lib/libdcerpc-samba.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:            8 kB
>> b7e2c000-b7e2d000 rw-p b7e2c000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e2d000-b7e35000 r-xp 00000000 07:09 1578050
>/data/runtime/jails/samba.vc0/lib/libkrb5samba.so
>> Size:                 32 kB
>> Rss:                  32 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           32 kB
>> b7e35000-b7e36000 rw-p 00008000 07:09 1578050
>/data/runtime/jails/samba.vc0/lib/libkrb5samba.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7e36000-b7e39000 r-xp 00000000 07:09 1578088
>/data/runtime/jails/samba.vc0/lib/libnss_info.so
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e39000-b7e3a000 rw-p 00002000 07:09 1578088
>/data/runtime/jails/samba.vc0/lib/libnss_info.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e3a000-b7e40000 r-xp 00000000 07:09 1578135
>/data/runtime/jails/samba.vc0/lib/libtalloc.so.2.0.8
>> Size:                 24 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b7e40000-b7e41000 rw-p 00005000 07:09 1578135
>/data/runtime/jails/samba.vc0/lib/libtalloc.so.2.0.8
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e41000-b7e51000 r-xp 00000000 07:09 1578041
>/data/runtime/jails/samba.vc0/lib/libidmap.so
>> Size:                 64 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7e51000-b7e52000 rw-p 0000f000 07:09 1578041
>/data/runtime/jails/samba.vc0/lib/libidmap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e52000-b7e7e000 r-xp 00000000 07:09 1578002
>/data/runtime/jails/samba.vc0/lib/libads.so
>> Size:                176 kB
>> Rss:                 104 kB
>> Shared_Clean:         60 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        44 kB
>> Private_Dirty:         0 kB
>> Referenced:          104 kB
>> b7e7e000-b7e7f000 rw-p 0002b000 07:09 1578002
>/data/runtime/jails/samba.vc0/lib/libads.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7e7f000-b7e94000 r-xp 00000000 07:09 1578081
>/data/runtime/jails/samba.vc0/lib/libndr.so.0.0.2
>> Size:                 84 kB
>> Rss:                  80 kB
>> Shared_Clean:         76 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           80 kB
>> b7e94000-b7e95000 rw-p 00015000 07:09 1578081
>/data/runtime/jails/samba.vc0/lib/libndr.so.0.0.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7e95000-b7e96000 rw-p b7e95000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e96000-b7ea8000 r-xp 00000000 07:09 1578016
>/data/runtime/jails/samba.vc0/lib/libcliauth.so
>> Size:                 72 kB
>> Rss:                  52 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        36 kB
>> Private_Dirty:         0 kB
>> Referenced:           52 kB
>> b7ea8000-b7ea9000 rw-p 00011000 07:09 1578016
>/data/runtime/jails/samba.vc0/lib/libcliauth.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ea9000-b7eb6000 r-xp 00000000 07:09 1578144
>/data/runtime/jails/samba.vc0/lib/libtevent.so.0.9.18
>> Size:                 52 kB
>> Rss:                  48 kB
>> Shared_Clean:         48 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           48 kB
>> b7eb6000-b7eb7000 rw-p 0000c000 07:09 1578144
>/data/runtime/jails/samba.vc0/lib/libtevent.so.0.9.18
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7eb7000-b7eb9000 r-xp 00000000 07:09 1578142
>/data/runtime/jails/samba.vc0/lib/libtevent-util.so.0.0.1
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7eb9000-b7eba000 rw-p 00001000 07:09 1578142
>/data/runtime/jails/samba.vc0/lib/libtevent-util.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7eba000-b7ecd000 r-xp 00000000 07:09 1578067
>/data/runtime/jails/samba.vc0/lib/libmsrpc3.so
>> Size:                 76 kB
>> Rss:                  72 kB
>> Shared_Clean:         72 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           72 kB
>> b7ecd000-b7ece000 rw-p 00012000 07:09 1578067
>/data/runtime/jails/samba.vc0/lib/libmsrpc3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ece000-b7eef000 r-xp 00000000 07:09 1578004
>/data/runtime/jails/samba.vc0/lib/libauth.so
>> Size:                132 kB
>> Rss:                  36 kB
>> Shared_Clean:         36 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           36 kB
>> b7eef000-b7ef0000 rw-p 00021000 07:09 1578004
>/data/runtime/jails/samba.vc0/lib/libauth.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ef0000-b7f20000 r-xp 00000000 07:09 1578112
>/data/runtime/jails/samba.vc0/lib/libsamba-util.so.0.0.1
>> Size:                192 kB
>> Rss:                 184 kB
>> Shared_Clean:        168 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        16 kB
>> Private_Dirty:         0 kB
>> Referenced:          184 kB
>> b7f20000-b7f21000 rw-p 00030000 07:09 1578112
>/data/runtime/jails/samba.vc0/lib/libsamba-util.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f21000-b7f25000 r-xp 00000000 07:09 1578093
>/data/runtime/jails/samba.vc0/lib/libpopt_samba3.so
>> Size:                 16 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f25000-b7f26000 rw-p 00003000 07:09 1578093
>/data/runtime/jails/samba.vc0/lib/libpopt_samba3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f26000-b7f3d000 r-xp 00000000 07:09 1578170
>/data/runtime/jails/samba.vc0/lib/libpthread.so.0
>> Size:                 92 kB
>> Rss:                  60 kB
>> Shared_Clean:         56 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           60 kB
>> b7f3d000-b7f3e000 r--p 00016000 07:09 1578170
>/data/runtime/jails/samba.vc0/lib/libpthread.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f3e000-b7f3f000 rw-p 00017000 07:09 1578170
>/data/runtime/jails/samba.vc0/lib/libpthread.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f3f000-b7f41000 rw-p b7f3f000 00:00 0
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f41000-b7f45000 r-xp 00000000 07:09 1577997
>/data/runtime/jails/samba.vc0/lib/libsafe.so
>> Size:                 16 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b7f45000-b7f46000 rw-p 00003000 07:09 1577997
>/data/runtime/jails/samba.vc0/lib/libsafe.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f46000-b7f48000 rw-p b7f46000 00:00 0
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7f48000-b7f49000 r-xp b7f48000 00:00 0          [vdso]
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f49000-b7f67000 r-xp 00000000 07:09 1578169
>/data/runtime/jails/samba.vc0/lib/ld-linux.so.2
>> Size:                120 kB
>> Rss:                  76 kB
>> Shared_Clean:         76 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           76 kB
>> b7f67000-b7f68000 r--p 0001d000 07:09 1578169
>/data/runtime/jails/samba.vc0/lib/ld-linux.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f68000-b7f69000 rw-p 0001e000 07:09 1578169
>/data/runtime/jails/samba.vc0/lib/ld-linux.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> bfa8d000-bfaa2000 rw-p bffeb000 00:00 0          [stack]
>> Size:                 84 kB
>> Rss:                  40 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        40 kB
>> Referenced:           40 kB
>
>> 80000000-8011d000 r-xp 00000000 07:09 1577990
>/data/runtime/jails/samba.vc0/sbin/winbindd
>> Size:               1140 kB
>> Rss:                 284 kB
>> Shared_Clean:        208 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        76 kB
>> Private_Dirty:         0 kB
>> Referenced:          284 kB
>> 8011d000-80120000 rw-p 0011d000 07:09 1577990
>/data/runtime/jails/samba.vc0/sbin/winbindd
>> Size:                 12 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        12 kB
>> Referenced:           12 kB
>> 80120000-80185000 rw-p 80120000 00:00 0          [heap]
>> Size:                404 kB
>> Rss:                 240 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         96 kB
>> Private_Clean:         0 kB
>> Private_Dirty:       144 kB
>> Referenced:          144 kB
>> b643f000-b6444000 r-xp 00000000 07:09 1578164
>/data/runtime/jails/samba.vc0/lib/libnss_dns.so.2
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b6444000-b6445000 r--p 00004000 07:09 1578164
>/data/runtime/jails/samba.vc0/lib/libnss_dns.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6445000-b6446000 rw-p 00005000 07:09 1578164
>/data/runtime/jails/samba.vc0/lib/libnss_dns.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6446000-b6452000 r-xp 00000000 07:09 1578165
>/data/runtime/jails/samba.vc0/lib/libnss_files.so.2
>> Size:                 48 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b6452000-b6453000 r--p 0000b000 07:09 1578165
>/data/runtime/jails/samba.vc0/lib/libnss_files.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6453000-b6454000 rw-p 0000c000 07:09 1578165
>/data/runtime/jails/samba.vc0/lib/libnss_files.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6454000-b6456000 r-xp 00000000 07:09 1586164
>/data/runtime/jails/samba.vc0/usr/lib/gconv/UTF-16.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6456000-b6457000 r--p 00001000 07:09 1586164
>/data/runtime/jails/samba.vc0/usr/lib/gconv/UTF-16.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6457000-b6458000 rw-p 00002000 07:09 1586164
>/data/runtime/jails/samba.vc0/usr/lib/gconv/UTF-16.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6458000-b645a000 r-xp 00000000 07:09 1586154
>/data/runtime/jails/samba.vc0/usr/lib/gconv/IBM850.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b645a000-b645b000 r--p 00001000 07:09 1586154
>/data/runtime/jails/samba.vc0/usr/lib/gconv/IBM850.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b645b000-b645c000 rw-p 00002000 07:09 1586154
>/data/runtime/jails/samba.vc0/usr/lib/gconv/IBM850.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b645c000-b64c4000 rw-s 00000000 07:09 1586199
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/gencache_notrans.tdb
>> Size:                416 kB
>> Rss:                  20 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         8 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b64c4000-b652f000 rw-s 00000000 07:09 1586198
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/gencache.tdb
>> Size:                428 kB
>> Rss:                  16 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b652f000-b6533000 rw-s 00000000 07:09 1586196
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/messages.tdb
>> Size:                 16 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6533000-b653b000 rw-s 00000000 07:09 1586205
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/winbindd_cache.tdb
>> Size:                 32 kB
>> Rss:                  20 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b653b000-b6c02000 rw-s 00000000 07:09 1586208
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/netsamlogon_cache.td
>b
>> Size:               6940 kB
>> Rss:                 376 kB
>> Shared_Clean:        376 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:          376 kB
>> b6c02000-b6c04000 rw-s 00000000 07:09 1586207
>/data/runtime/jails/samba.vc0/var/locks/.7.winbindd/serverid.tdb
>> Size:                  8 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6c05000-b6c6c000 rw-s 00000000 07:09 1586197
>/data/runtime/jails/samba.vc0/var/lib/.7.winbindd/secrets.tdb
>> Size:                412 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b6c6c000-b6c73000 rw-p b6c6c000 00:00 0
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         24 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:           24 kB
>> b6c73000-b6c77000 r-xp 00000000 07:09 1578173
>/data/runtime/jails/samba.vc0/lib/libattr.so.1
>> Size:                 16 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c77000-b6c78000 r--p 00003000 07:09 1578173
>/data/runtime/jails/samba.vc0/lib/libattr.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c78000-b6c79000 rw-p 00004000 07:09 1578173
>/data/runtime/jails/samba.vc0/lib/libattr.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6c79000-b6c7a000 rw-p b6c79000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c7a000-b6c92000 r-xp 00000000 07:09 1578090
>/data/runtime/jails/samba.vc0/lib/libntdb.so.0.9
>> Size:                 96 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c92000-b6c93000 rw-p 00017000 07:09 1578090
>/data/runtime/jails/samba.vc0/lib/libntdb.so.0.9
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c93000-b6c95000 r-xp 00000000 07:09 1578147
>/data/runtime/jails/samba.vc0/lib/libutil_ntdb.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c95000-b6c96000 rw-p 00001000 07:09 1578147
>/data/runtime/jails/samba.vc0/lib/libutil_ntdb.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6c96000-b6ce5000 r-xp 00000000 07:09 1578183
>/data/runtime/jails/samba.vc0/lib/libfreebl3.so
>> Size:                316 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ce5000-b6ce6000 r--p 0004e000 07:09 1578183
>/data/runtime/jails/samba.vc0/lib/libfreebl3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ce6000-b6ce7000 rw-p 0004f000 07:09 1578183
>/data/runtime/jails/samba.vc0/lib/libfreebl3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6ce7000-b6cec000 rw-p b6ce7000 00:00 0
>> Size:                 20 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6cec000-b6cee000 r-xp 00000000 07:09 1578154
>/data/runtime/jails/samba.vc0/lib/libwinbind-client.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6cee000-b6cef000 rw-p 00001000 07:09 1578154
>/data/runtime/jails/samba.vc0/lib/libwinbind-client.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6cef000-b6d15000 r-xp 00000000 07:09 1578063
>/data/runtime/jails/samba.vc0/lib/libldbsamba.so
>> Size:                152 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6d15000-b6d17000 rw-p 00025000 07:09 1578063
>/data/runtime/jails/samba.vc0/lib/libldbsamba.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6d17000-b6d31000 r-xp 00000000 07:09 1578115
>/data/runtime/jails/samba.vc0/lib/libsamdb-common.so
>> Size:                104 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6d31000-b6d32000 rw-p 00019000 07:09 1578115
>/data/runtime/jails/samba.vc0/lib/libsamdb-common.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6d32000-b6f0e000 r-xp 00000000 07:09 1578160
>/data/runtime/jails/samba.vc0/lib/libcrypto.so.1.0.0
>> Size:               1904 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6f0e000-b6f25000 rw-p 001dc000 07:09 1578160
>/data/runtime/jails/samba.vc0/lib/libcrypto.so.1.0.0
>> Size:                 92 kB
>> Rss:                  92 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         92 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6f25000-b6f2a000 rw-p b6f25000 00:00 0
>> Size:                 20 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         12 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6f2a000-b6f8b000 r-xp 00000000 07:09 1578167
>/data/runtime/jails/samba.vc0/lib/libssl.so.1.0.0
>> Size:                388 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6f8b000-b6f90000 rw-p 00061000 07:09 1578167
>/data/runtime/jails/samba.vc0/lib/libssl.so.1.0.0
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         20 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6f90000-b6fa5000 r-xp 00000000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                 84 kB
>> Rss:                  56 kB
>> Shared_Clean:         56 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           56 kB
>> b6fa5000-b6fa6000 ---p 00015000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                  4 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b6fa6000-b6fa7000 r--p 00015000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fa7000-b6fa8000 rw-p 00016000 07:09 1578166
>/data/runtime/jails/samba.vc0/lib/libresolv.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6fa8000-b6faa000 rw-p b6fa8000 00:00 0
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6faa000-b6faf000 r-xp 00000000 07:09 1578053
>/data/runtime/jails/samba.vc0/lib/libkrb5support.so.0.1
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:         20 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b6faf000-b6fb0000 rw-p 00004000 07:09 1578053
>/data/runtime/jails/samba.vc0/lib/libkrb5support.so.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6fb0000-b6fb3000 r-xp 00000000 07:09 1578157
>/data/runtime/jails/samba.vc0/lib/libcap.so.2
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb3000-b6fb4000 rw-p 00002000 07:09 1578157
>/data/runtime/jails/samba.vc0/lib/libcap.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb4000-b6fb5000 rw-p b6fb4000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b6fb5000-b6fb6000 r-xp 00000000 07:09 1578149
>/data/runtime/jails/samba.vc0/lib/libutil_setid.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb6000-b6fb7000 rw-p 00000000 07:09 1578149
>/data/runtime/jails/samba.vc0/lib/libutil_setid.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb7000-b6fb8000 r-xp 00000000 07:09 1578148
>/data/runtime/jails/samba.vc0/lib/libutil_reg.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb8000-b6fb9000 rw-p 00000000 07:09 1578148
>/data/runtime/jails/samba.vc0/lib/libutil_reg.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fb9000-b6fbe000 r-xp 00000000 07:09 1578009
>/data/runtime/jails/samba.vc0/lib/libccan.so
>> Size:                 20 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fbe000-b6fbf000 rw-p 00004000 07:09 1578009
>/data/runtime/jails/samba.vc0/lib/libccan.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fbf000-b6fc0000 r-xp 00000000 07:09 1578043
>/data/runtime/jails/samba.vc0/lib/libinterfaces.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fc0000-b6fc1000 rw-p 00001000 07:09 1578043
>/data/runtime/jails/samba.vc0/lib/libinterfaces.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6fc1000-b6fef000 r-xp 00000000 07:09 1578062
>/data/runtime/jails/samba.vc0/lib/libldb.so.1.1.16
>> Size:                184 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b6fef000-b6ff0000 rw-p 0002d000 07:09 1578062
>/data/runtime/jails/samba.vc0/lib/libldb.so.1.1.16
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ff0000-b6ff1000 rw-p b6ff0000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ff1000-b6ffa000 r-xp 00000000 07:09 1578012
>/data/runtime/jails/samba.vc0/lib/libcli-nbt.so
>> Size:                 36 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6ffa000-b6ffb000 rw-p 00009000 07:09 1578012
>/data/runtime/jails/samba.vc0/lib/libcli-nbt.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ffb000-b6ffd000 r-xp 00000000 07:09 1577998
>/data/runtime/jails/samba.vc0/lib/libCHARSET3.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b6ffd000-b6ffe000 rw-p 00001000 07:09 1577998
>/data/runtime/jails/samba.vc0/lib/libCHARSET3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b6ffe000-b7017000 r-xp 00000000 07:09 1578175
>/data/runtime/jails/samba.vc0/lib/libsasl2.so.2
>> Size:                100 kB
>> Rss:                  76 kB
>> Shared_Clean:         20 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        56 kB
>> Private_Dirty:         0 kB
>> Referenced:           76 kB
>> b7017000-b7018000 r--p 00018000 07:09 1578175
>/data/runtime/jails/samba.vc0/lib/libsasl2.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7018000-b7019000 rw-p 00019000 07:09 1578175
>/data/runtime/jails/samba.vc0/lib/libsasl2.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7019000-b702d000 r-xp 00000000 07:09 1578118
>/data/runtime/jails/samba.vc0/lib/libsamdb.so.0.0.1
>> Size:                 80 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b702d000-b702e000 rw-p 00013000 07:09 1578118
>/data/runtime/jails/samba.vc0/lib/libsamdb.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b702e000-b702f000 rw-p b702e000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b702f000-b7041000 r-xp 00000000 07:09 1578158
>/data/runtime/jails/samba.vc0/lib/libz.so.1
>> Size:                 72 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7041000-b7042000 r--p 00011000 07:09 1578158
>/data/runtime/jails/samba.vc0/lib/libz.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7042000-b7043000 rw-p 00012000 07:09 1578158
>/data/runtime/jails/samba.vc0/lib/libz.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b7043000-b7044000 r-xp 00000000 07:09 1578120
>/data/runtime/jails/samba.vc0/lib/libserver-role.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7044000-b7045000 rw-p 00000000 07:09 1578120
>/data/runtime/jails/samba.vc0/lib/libserver-role.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7045000-b7047000 r-xp 00000000 07:09 1578136
>/data/runtime/jails/samba.vc0/lib/libtdb-wrap.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7047000-b7048000 rw-p 00001000 07:09 1578136
>/data/runtime/jails/samba.vc0/lib/libtdb-wrap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7048000-b7049000 rw-p b7048000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7049000-b706c000 r-xp 00000000 07:09 1578046
>/data/runtime/jails/samba.vc0/lib/libk5crypto.so.3.1
>> Size:                140 kB
>> Rss:                 100 kB
>> Shared_Clean:        100 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:          100 kB
>> b706c000-b706d000 rw-p 00023000 07:09 1578046
>/data/runtime/jails/samba.vc0/lib/libk5crypto.so.3.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b706d000-b7071000 r-xp 00000000 07:09 1578130
>/data/runtime/jails/samba.vc0/lib/libsmbldaphelper.so
>> Size:                 16 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7071000-b7072000 rw-p 00003000 07:09 1578130
>/data/runtime/jails/samba.vc0/lib/libsmbldaphelper.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7072000-b707d000 r-xp 00000000 07:09 1578055
>/data/runtime/jails/samba.vc0/lib/liblber-2.4.so.2.5.6
>> Size:                 44 kB
>> Rss:                  44 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        28 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b707d000-b707e000 rw-p 0000a000 07:09 1578055
>/data/runtime/jails/samba.vc0/lib/liblber-2.4.so.2.5.6
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b707e000-b70af000 r-xp 00000000 07:09 1578040
>/data/runtime/jails/samba.vc0/lib/libgssapi_krb5.so.2.2
>> Size:                196 kB
>> Rss:                 164 kB
>> Shared_Clean:         32 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:       132 kB
>> Private_Dirty:         0 kB
>> Referenced:          164 kB
>> b70af000-b70b1000 rw-p 00031000 07:09 1578040
>/data/runtime/jails/samba.vc0/lib/libgssapi_krb5.so.2.2
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:            8 kB
>> b70b1000-b70cd000 r-xp 00000000 07:09 1578073
>/data/runtime/jails/samba.vc0/lib/libndr-nbt.so.0.0.1
>> Size:                112 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70cd000-b70ce000 rw-p 0001b000 07:09 1578073
>/data/runtime/jails/samba.vc0/lib/libndr-nbt.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70ce000-b70cf000 rw-p b70ce000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70cf000-b70d6000 r-xp 00000000 07:09 1578013
>/data/runtime/jails/samba.vc0/lib/libcli_cldap.so
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70d6000-b70d7000 rw-p 00006000 07:09 1578013
>/data/runtime/jails/samba.vc0/lib/libcli_cldap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70d7000-b70e0000 r-xp 00000000 07:09 1578129
>/data/runtime/jails/samba.vc0/lib/libsmbldap.so.0
>> Size:                 36 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b70e0000-b70e1000 rw-p 00008000 07:09 1578129
>/data/runtime/jails/samba.vc0/lib/libsmbldap.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70e1000-b70ed000 r-xp 00000000 07:09 1578001
>/data/runtime/jails/samba.vc0/lib/libaddns.so
>> Size:                 48 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b70ed000-b70ee000 rw-p 0000b000 07:09 1578001
>/data/runtime/jails/samba.vc0/lib/libaddns.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b70ee000-b70f9000 r-xp 00000000 07:09 1578022
>/data/runtime/jails/samba.vc0/lib/libdbwrap.so
>> Size:                 44 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b70f9000-b70fa000 rw-p 0000b000 07:09 1578022
>/data/runtime/jails/samba.vc0/lib/libdbwrap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b70fa000-b70ff000 r-xp 00000000 07:09 1578003
>/data/runtime/jails/samba.vc0/lib/libasn1util.so
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:         20 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           20 kB
>> b70ff000-b7100000 rw-p 00004000 07:09 1578003
>/data/runtime/jails/samba.vc0/lib/libasn1util.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7100000-b7101000 rw-p b7100000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7101000-b7118000 r-xp 00000000 07:09 1578163
>/data/runtime/jails/samba.vc0/lib/libnsl.so.1
>> Size:                 92 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7118000-b7119000 r--p 00016000 07:09 1578163
>/data/runtime/jails/samba.vc0/lib/libnsl.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7119000-b711a000 rw-p 00017000 07:09 1578163
>/data/runtime/jails/samba.vc0/lib/libnsl.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b711a000-b711c000 rw-p b711a000 00:00 0
>> Size:                  8 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b711c000-b7123000 r-xp 00000000 07:09 1578159
>/data/runtime/jails/samba.vc0/lib/libcrypt.so.1
>> Size:                 28 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7123000-b7124000 r--p 00007000 07:09 1578159
>/data/runtime/jails/samba.vc0/lib/libcrypt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7124000-b7125000 rw-p 00008000 07:09 1578159
>/data/runtime/jails/samba.vc0/lib/libcrypt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b7125000-b714c000 rw-p b7125000 00:00 0
>> Size:                156 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b714c000-b714f000 r-xp 00000000 07:09 1578006
>/data/runtime/jails/samba.vc0/lib/libauth_sam_reply.so
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b714f000-b7150000 rw-p 00002000 07:09 1578006
>/data/runtime/jails/samba.vc0/lib/libauth_sam_reply.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7150000-b7152000 r-xp 00000000 07:09 1578106
>/data/runtime/jails/samba.vc0/lib/libsamba-modules.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7152000-b7153000 rw-p 00001000 07:09 1578106
>/data/runtime/jails/samba.vc0/lib/libsamba-modules.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7153000-b715d000 r-xp 00000000 07:09 1578070
>/data/runtime/jails/samba.vc0/lib/libndr-krb5pac.so.0.0.1
>> Size:                 40 kB
>> Rss:                  36 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        20 kB
>> Private_Dirty:         0 kB
>> Referenced:           36 kB
>> b715d000-b715e000 rw-p 00009000 07:09 1578070
>/data/runtime/jails/samba.vc0/lib/libndr-krb5pac.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b715e000-b715f000 rw-p b715e000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b715f000-b716a000 r-xp 00000000 07:09 1578153
>/data/runtime/jails/samba.vc0/lib/libwbclient.so.0.11
>> Size:                 44 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b716a000-b716b000 rw-p 0000b000 07:09 1578153
>/data/runtime/jails/samba.vc0/lib/libwbclient.so.0.11
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b716b000-b716c000 rw-p b716b000 00:00 0
>> Size:                  4 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b716c000-b717b000 r-xp 00000000 07:09 1578102
>/data/runtime/jails/samba.vc0/lib/libsamba-credentials.so.0.0.1
>> Size:                 60 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b717b000-b717c000 rw-p 0000e000 07:09 1578102
>/data/runtime/jails/samba.vc0/lib/libsamba-credentials.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b717c000-b7183000 r-xp 00000000 07:09 1578171
>/data/runtime/jails/samba.vc0/lib/librt.so.1
>> Size:                 28 kB
>> Rss:                  12 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           12 kB
>> b7183000-b7184000 r--p 00006000 07:09 1578171
>/data/runtime/jails/samba.vc0/lib/librt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7184000-b7185000 rw-p 00007000 07:09 1578171
>/data/runtime/jails/samba.vc0/lib/librt.so.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7185000-b7187000 r-xp 00000000 07:09 1578146
>/data/runtime/jails/samba.vc0/lib/libutil_cmdline.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7187000-b7188000 rw-p 00001000 07:09 1578146
>/data/runtime/jails/samba.vc0/lib/libutil_cmdline.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7188000-b718b000 r-xp 00000000 07:09 1578162
>/data/runtime/jails/samba.vc0/lib/libdl.so.2
>> Size:                 12 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b718b000-b718c000 r--p 00002000 07:09 1578162
>/data/runtime/jails/samba.vc0/lib/libdl.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b718c000-b718d000 rw-p 00003000 07:09 1578162
>/data/runtime/jails/samba.vc0/lib/libdl.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b718d000-b718e000 rw-p b718d000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b718e000-b731e000 r-xp 00000000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:               1600 kB
>> Rss:                 572 kB
>> Shared_Clean:        488 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        84 kB
>> Private_Dirty:         0 kB
>> Referenced:          572 kB
>> b731e000-b731f000 ---p 00190000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:                  4 kB
>> Rss:                   0 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            0 kB
>> b731f000-b7321000 r--p 00190000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7321000-b7322000 rw-p 00192000 07:09 1578156
>/data/runtime/jails/samba.vc0/lib/libc.so.6
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7322000-b7325000 rw-p b7322000 00:00 0
>> Size:                 12 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        12 kB
>> Referenced:           12 kB
>> b7325000-b7361000 r-xp 00000000 07:09 1578058
>/data/runtime/jails/samba.vc0/lib/libldap-2.4.so.2.5.6
>> Size:                240 kB
>> Rss:                 156 kB
>> Shared_Clean:         40 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:       116 kB
>> Private_Dirty:         0 kB
>> Referenced:          156 kB
>> b7361000-b7363000 rw-p 0003b000 07:09 1578058
>/data/runtime/jails/samba.vc0/lib/libldap-2.4.so.2.5.6
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            8 kB
>> b7363000-b736b000 r-xp 00000000 07:09 1578182
>/data/runtime/jails/samba.vc0/lib/libpopt.so.0
>> Size:                 32 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b736b000-b736c000 rw-p 00007000 07:09 1578182
>/data/runtime/jails/samba.vc0/lib/libpopt.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b736c000-b736e000 r-xp 00000000 07:09 1578021
>/data/runtime/jails/samba.vc0/lib/libcom_err.so.3.0
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b736e000-b736f000 rw-p 00001000 07:09 1578021
>/data/runtime/jails/samba.vc0/lib/libcom_err.so.3.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b736f000-b7417000 r-xp 00000000 07:09 1578049
>/data/runtime/jails/samba.vc0/lib/libkrb5.so.3.3
>> Size:                672 kB
>> Rss:                 428 kB
>> Shared_Clean:        368 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        60 kB
>> Private_Dirty:         0 kB
>> Referenced:          428 kB
>> b7417000-b741d000 rw-p 000a8000 07:09 1578049
>/data/runtime/jails/samba.vc0/lib/libkrb5.so.3.3
>> Size:                 24 kB
>> Rss:                  24 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         16 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:           24 kB
>> b741d000-b741e000 r-xp 00000000 07:09 1578127
>/data/runtime/jails/samba.vc0/lib/libsmbd_shim.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b741e000-b741f000 rw-p 00000000 07:09 1578127
>/data/runtime/jails/samba.vc0/lib/libsmbd_shim.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b741f000-b7439000 r-xp 00000000 07:09 1578132
>/data/runtime/jails/samba.vc0/lib/libsmbregistry.so
>> Size:                104 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b7439000-b743a000 rw-p 0001a000 07:09 1578132
>/data/runtime/jails/samba.vc0/lib/libsmbregistry.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b743a000-b743b000 rw-p b743a000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b743b000-b743f000 r-xp 00000000 07:09 1578122
>/data/runtime/jails/samba.vc0/lib/libsmb_transport.so
>> Size:                 16 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b743f000-b7440000 rw-p 00003000 07:09 1578122
>/data/runtime/jails/samba.vc0/lib/libsmb_transport.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7440000-b744a000 r-xp 00000000 07:09 1578008
>/data/runtime/jails/samba.vc0/lib/libauthkrb5.so
>> Size:                 40 kB
>> Rss:                  28 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        12 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b744a000-b744b000 rw-p 00009000 07:09 1578008
>/data/runtime/jails/samba.vc0/lib/libauthkrb5.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b744b000-b7455000 r-xp 00000000 07:09 1578119
>/data/runtime/jails/samba.vc0/lib/libsecrets3.so
>> Size:                 40 kB
>> Rss:                  32 kB
>> Shared_Clean:         32 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           32 kB
>> b7455000-b7456000 rw-p 00009000 07:09 1578119
>/data/runtime/jails/samba.vc0/lib/libsecrets3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7456000-b7457000 r-xp 00000000 07:09 1578032
>/data/runtime/jails/samba.vc0/lib/libflag_mapping.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7457000-b7458000 rw-p 00000000 07:09 1578032
>/data/runtime/jails/samba.vc0/lib/libflag_mapping.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7458000-b7461000 r-xp 00000000 07:09 1578113
>/data/runtime/jails/samba.vc0/lib/libsamba3-util.so
>> Size:                 36 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b7461000-b7462000 rw-p 00008000 07:09 1578113
>/data/runtime/jails/samba.vc0/lib/libsamba3-util.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7462000-b7463000 rw-p b7462000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7463000-b74cd000 r-xp 00000000 07:09 1578124
>/data/runtime/jails/samba.vc0/lib/libsmbconf.so.0
>> Size:                424 kB
>> Rss:                 200 kB
>> Shared_Clean:        188 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        12 kB
>> Private_Dirty:         0 kB
>> Referenced:          200 kB
>> b74cd000-b74d4000 rw-p 0006a000 07:09 1578124
>/data/runtime/jails/samba.vc0/lib/libsmbconf.so.0
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         16 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        12 kB
>> Referenced:           12 kB
>> b74d4000-b74db000 r-xp 00000000 07:09 1578010
>/data/runtime/jails/samba.vc0/lib/libcli-ldap-common.so
>> Size:                 28 kB
>> Rss:                  28 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           28 kB
>> b74db000-b74dc000 rw-p 00006000 07:09 1578010
>/data/runtime/jails/samba.vc0/lib/libcli-ldap-common.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b74dc000-b74ee000 r-xp 00000000 07:09 1578138
>/data/runtime/jails/samba.vc0/lib/libtdb.so.1.2.12
>> Size:                 72 kB
>> Rss:                  68 kB
>> Shared_Clean:         68 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           68 kB
>> b74ee000-b74ef000 rw-p 00011000 07:09 1578138
>/data/runtime/jails/samba.vc0/lib/libtdb.so.1.2.12
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b74ef000-b74f1000 r-xp 00000000 07:09 1578150
>/data/runtime/jails/samba.vc0/lib/libutil_tdb.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b74f1000-b74f2000 rw-p 00001000 07:09 1578150
>/data/runtime/jails/samba.vc0/lib/libutil_tdb.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b74f2000-b795f000 r-xp 00000000 07:09 1578078
>/data/runtime/jails/samba.vc0/lib/libndr-standard.so.0.0.1
>> Size:               4532 kB
>> Rss:                 244 kB
>> Shared_Clean:        152 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        92 kB
>> Private_Dirty:         0 kB
>> Referenced:          244 kB
>> b795f000-b7967000 rw-p 0046d000 07:09 1578078
>/data/runtime/jails/samba.vc0/lib/libndr-standard.so.0.0.1
>> Size:                 32 kB
>> Rss:                  32 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         24 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:           20 kB
>> b7967000-b798e000 r-xp 00000000 07:09 1578037
>/data/runtime/jails/samba.vc0/lib/libgse.so
>> Size:                156 kB
>> Rss:                 124 kB
>> Shared_Clean:         96 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        28 kB
>> Private_Dirty:         0 kB
>> Referenced:          124 kB
>> b798e000-b798f000 rw-p 00027000 07:09 1578037
>/data/runtime/jails/samba.vc0/lib/libgse.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b798f000-b7990000 rw-p b798f000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7990000-b79f7000 r-xp 00000000 07:09 1578066
>/data/runtime/jails/samba.vc0/lib/liblibsmb.so
>> Size:                412 kB
>> Rss:                 180 kB
>> Shared_Clean:        180 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:          180 kB
>> b79f7000-b79f8000 rw-p 00067000 07:09 1578066
>/data/runtime/jails/samba.vc0/lib/liblibsmb.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b79f8000-b7a0c000 r-xp 00000000 07:09 1578109
>/data/runtime/jails/samba.vc0/lib/libsamba-sockets.so
>> Size:                 80 kB
>> Rss:                  44 kB
>> Shared_Clean:         44 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b7a0c000-b7a0d000 rw-p 00013000 07:09 1578109
>/data/runtime/jails/samba.vc0/lib/libsamba-sockets.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7a0d000-b7a2f000 r-xp 00000000 07:09 1578014
>/data/runtime/jails/samba.vc0/lib/libcli_smb_common.so
>> Size:                136 kB
>> Rss:                  88 kB
>> Shared_Clean:         88 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           88 kB
>> b7a2f000-b7a30000 rw-p 00022000 07:09 1578014
>/data/runtime/jails/samba.vc0/lib/libcli_smb_common.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7a30000-b7a53000 r-xp 00000000 07:09 1578035
>/data/runtime/jails/samba.vc0/lib/libgensec.so.0.0.1
>> Size:                140 kB
>> Rss:                  76 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        48 kB
>> Private_Dirty:         0 kB
>> Referenced:           76 kB
>> b7a53000-b7a54000 rw-p 00023000 07:09 1578035
>/data/runtime/jails/samba.vc0/lib/libgensec.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7a54000-b7a6f000 r-xp 00000000 07:09 1578108
>/data/runtime/jails/samba.vc0/lib/libsamba-security.so
>> Size:                108 kB
>> Rss:                  44 kB
>> Shared_Clean:         44 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b7a6f000-b7a70000 rw-p 0001a000 07:09 1578108
>/data/runtime/jails/samba.vc0/lib/libsamba-security.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7a70000-b7a71000 rw-p b7a70000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7a71000-b7ac4000 r-xp 00000000 07:09 1578030
>/data/runtime/jails/samba.vc0/lib/liberrors.so
>> Size:                332 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b7ac4000-b7ad0000 rw-p 00053000 07:09 1578030
>/data/runtime/jails/samba.vc0/lib/liberrors.so
>> Size:                 48 kB
>> Rss:                  48 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         48 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7ad0000-b7c01000 r-xp 00000000 07:09 1578074
>/data/runtime/jails/samba.vc0/lib/libndr-samba.so
>> Size:               1220 kB
>> Rss:                  64 kB
>> Shared_Clean:         40 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        24 kB
>> Private_Dirty:         0 kB
>> Referenced:           64 kB
>> b7c01000-b7c04000 rw-p 00131000 07:09 1578074
>/data/runtime/jails/samba.vc0/lib/libndr-samba.so
>> Size:                 12 kB
>> Rss:                  12 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            8 kB
>> b7c04000-b7c06000 r-xp 00000000 07:09 1578145
>/data/runtime/jails/samba.vc0/lib/libtrusts_util.so
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c06000-b7c07000 rw-p 00001000 07:09 1578145
>/data/runtime/jails/samba.vc0/lib/libtrusts_util.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c07000-b7c0b000 r-xp 00000000 07:09 1578065
>/data/runtime/jails/samba.vc0/lib/liblibcli_netlogon3.so
>> Size:                 16 kB
>> Rss:                  12 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           12 kB
>> b7c0b000-b7c0c000 rw-p 00003000 07:09 1578065
>/data/runtime/jails/samba.vc0/lib/liblibcli_netlogon3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7c0c000-b7c0f000 r-xp 00000000 07:09 1578064
>/data/runtime/jails/samba.vc0/lib/liblibcli_lsa3.so
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c0f000-b7c10000 rw-p 00002000 07:09 1578064
>/data/runtime/jails/samba.vc0/lib/liblibcli_lsa3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c10000-b7c3c000 r-xp 00000000 07:09 1578105
>/data/runtime/jails/samba.vc0/lib/libsamba-hostconfig.so.0.0.1
>> Size:                176 kB
>> Rss:                  44 kB
>> Shared_Clean:         40 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           44 kB
>> b7c3c000-b7c41000 rw-p 0002c000 07:09 1578105
>/data/runtime/jails/samba.vc0/lib/libsamba-hostconfig.so.0.0.1
>> Size:                 20 kB
>> Rss:                  20 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:         16 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7c41000-b7c42000 rw-p b7c41000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c42000-b7c43000 r-xp 00000000 07:09 1578099
>/data/runtime/jails/samba.vc0/lib/libreplace.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c43000-b7c44000 rw-p 00000000 07:09 1578099
>/data/runtime/jails/samba.vc0/lib/libreplace.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7c44000-b7ca6000 r-xp 00000000 07:09 1578092
>/data/runtime/jails/samba.vc0/lib/libpdb.so.0
>> Size:                392 kB
>> Rss:                  56 kB
>> Shared_Clean:         56 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           56 kB
>> b7ca6000-b7ca7000 rw-p 00062000 07:09 1578092
>/data/runtime/jails/samba.vc0/lib/libpdb.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ca7000-b7cc2000 r-xp 00000000 07:09 1578025
>/data/runtime/jails/samba.vc0/lib/libdcerpc-binding.so.0.0.1
>> Size:                108 kB
>> Rss:                  64 kB
>> Shared_Clean:         60 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           64 kB
>> b7cc2000-b7cc3000 rw-p 0001a000 07:09 1578025
>/data/runtime/jails/samba.vc0/lib/libdcerpc-binding.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7cc3000-b7cca000 r-xp 00000000 07:09 1578087
>/data/runtime/jails/samba.vc0/lib/libnpa_tstream.so
>> Size:                 28 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7cca000-b7ccb000 rw-p 00006000 07:09 1578087
>/data/runtime/jails/samba.vc0/lib/libnpa_tstream.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7ccb000-b7e2a000 r-xp 00000000 07:09 1578026
>/data/runtime/jails/samba.vc0/lib/libdcerpc-samba.so
>> Size:               1404 kB
>> Rss:                 120 kB
>> Shared_Clean:         64 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        56 kB
>> Private_Dirty:         0 kB
>> Referenced:          120 kB
>> b7e2a000-b7e2c000 rw-p 0015f000 07:09 1578026
>/data/runtime/jails/samba.vc0/lib/libdcerpc-samba.so
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         8 kB
>> Referenced:            8 kB
>> b7e2c000-b7e2d000 rw-p b7e2c000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e2d000-b7e35000 r-xp 00000000 07:09 1578050
>/data/runtime/jails/samba.vc0/lib/libkrb5samba.so
>> Size:                 32 kB
>> Rss:                  32 kB
>> Shared_Clean:         28 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           32 kB
>> b7e35000-b7e36000 rw-p 00008000 07:09 1578050
>/data/runtime/jails/samba.vc0/lib/libkrb5samba.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7e36000-b7e39000 r-xp 00000000 07:09 1578088
>/data/runtime/jails/samba.vc0/lib/libnss_info.so
>> Size:                 12 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e39000-b7e3a000 rw-p 00002000 07:09 1578088
>/data/runtime/jails/samba.vc0/lib/libnss_info.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e3a000-b7e40000 r-xp 00000000 07:09 1578135
>/data/runtime/jails/samba.vc0/lib/libtalloc.so.2.0.8
>> Size:                 24 kB
>> Rss:                  24 kB
>> Shared_Clean:         24 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           24 kB
>> b7e40000-b7e41000 rw-p 00005000 07:09 1578135
>/data/runtime/jails/samba.vc0/lib/libtalloc.so.2.0.8
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e41000-b7e51000 r-xp 00000000 07:09 1578041
>/data/runtime/jails/samba.vc0/lib/libidmap.so
>> Size:                 64 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7e51000-b7e52000 rw-p 0000f000 07:09 1578041
>/data/runtime/jails/samba.vc0/lib/libidmap.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e52000-b7e7e000 r-xp 00000000 07:09 1578002
>/data/runtime/jails/samba.vc0/lib/libads.so
>> Size:                176 kB
>> Rss:                 104 kB
>> Shared_Clean:         60 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        44 kB
>> Private_Dirty:         0 kB
>> Referenced:          104 kB
>> b7e7e000-b7e7f000 rw-p 0002b000 07:09 1578002
>/data/runtime/jails/samba.vc0/lib/libads.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7e7f000-b7e94000 r-xp 00000000 07:09 1578081
>/data/runtime/jails/samba.vc0/lib/libndr.so.0.0.2
>> Size:                 84 kB
>> Rss:                  80 kB
>> Shared_Clean:         76 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           80 kB
>> b7e94000-b7e95000 rw-p 00015000 07:09 1578081
>/data/runtime/jails/samba.vc0/lib/libndr.so.0.0.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7e95000-b7e96000 rw-p b7e95000 00:00 0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7e96000-b7ea8000 r-xp 00000000 07:09 1578016
>/data/runtime/jails/samba.vc0/lib/libcliauth.so
>> Size:                 72 kB
>> Rss:                  36 kB
>> Shared_Clean:         12 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        24 kB
>> Private_Dirty:         0 kB
>> Referenced:           36 kB
>> b7ea8000-b7ea9000 rw-p 00011000 07:09 1578016
>/data/runtime/jails/samba.vc0/lib/libcliauth.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ea9000-b7eb6000 r-xp 00000000 07:09 1578144
>/data/runtime/jails/samba.vc0/lib/libtevent.so.0.9.18
>> Size:                 52 kB
>> Rss:                  48 kB
>> Shared_Clean:         48 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           48 kB
>> b7eb6000-b7eb7000 rw-p 0000c000 07:09 1578144
>/data/runtime/jails/samba.vc0/lib/libtevent.so.0.9.18
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7eb7000-b7eb9000 r-xp 00000000 07:09 1578142
>/data/runtime/jails/samba.vc0/lib/libtevent-util.so.0.0.1
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          8 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7eb9000-b7eba000 rw-p 00001000 07:09 1578142
>/data/runtime/jails/samba.vc0/lib/libtevent-util.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7eba000-b7ecd000 r-xp 00000000 07:09 1578067
>/data/runtime/jails/samba.vc0/lib/libmsrpc3.so
>> Size:                 76 kB
>> Rss:                  72 kB
>> Shared_Clean:         72 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           72 kB
>> b7ecd000-b7ece000 rw-p 00012000 07:09 1578067
>/data/runtime/jails/samba.vc0/lib/libmsrpc3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ece000-b7eef000 r-xp 00000000 07:09 1578004
>/data/runtime/jails/samba.vc0/lib/libauth.so
>> Size:                132 kB
>> Rss:                  36 kB
>> Shared_Clean:         36 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           36 kB
>> b7eef000-b7ef0000 rw-p 00021000 07:09 1578004
>/data/runtime/jails/samba.vc0/lib/libauth.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7ef0000-b7f20000 r-xp 00000000 07:09 1578112
>/data/runtime/jails/samba.vc0/lib/libsamba-util.so.0.0.1
>> Size:                192 kB
>> Rss:                 184 kB
>> Shared_Clean:        168 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:        16 kB
>> Private_Dirty:         0 kB
>> Referenced:          184 kB
>> b7f20000-b7f21000 rw-p 00030000 07:09 1578112
>/data/runtime/jails/samba.vc0/lib/libsamba-util.so.0.0.1
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f21000-b7f25000 r-xp 00000000 07:09 1578093
>/data/runtime/jails/samba.vc0/lib/libpopt_samba3.so
>> Size:                 16 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f25000-b7f26000 rw-p 00003000 07:09 1578093
>/data/runtime/jails/samba.vc0/lib/libpopt_samba3.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f26000-b7f3d000 r-xp 00000000 07:09 1578170
>/data/runtime/jails/samba.vc0/lib/libpthread.so.0
>> Size:                 92 kB
>> Rss:                  60 kB
>> Shared_Clean:         56 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         4 kB
>> Private_Dirty:         0 kB
>> Referenced:           60 kB
>> b7f3d000-b7f3e000 r--p 00016000 07:09 1578170
>/data/runtime/jails/samba.vc0/lib/libpthread.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f3e000-b7f3f000 rw-p 00017000 07:09 1578170
>/data/runtime/jails/samba.vc0/lib/libpthread.so.0
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f3f000-b7f41000 rw-p b7f3f000 00:00 0
>> Size:                  8 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f41000-b7f45000 r-xp 00000000 07:09 1577997
>/data/runtime/jails/samba.vc0/lib/libsafe.so
>> Size:                 16 kB
>> Rss:                  16 kB
>> Shared_Clean:         16 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           16 kB
>> b7f45000-b7f46000 rw-p 00003000 07:09 1577997
>/data/runtime/jails/samba.vc0/lib/libsafe.so
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> b7f46000-b7f48000 rw-p b7f46000 00:00 0
>> Size:                  8 kB
>> Rss:                   8 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          8 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            8 kB
>> b7f48000-b7f49000 r-xp b7f48000 00:00 0          [vdso]
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          4 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f49000-b7f67000 r-xp 00000000 07:09 1578169
>/data/runtime/jails/samba.vc0/lib/ld-linux.so.2
>> Size:                120 kB
>> Rss:                  76 kB
>> Shared_Clean:         76 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:           76 kB
>> b7f67000-b7f68000 r--p 0001d000 07:09 1578169
>/data/runtime/jails/samba.vc0/lib/ld-linux.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          4 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         0 kB
>> Referenced:            4 kB
>> b7f68000-b7f69000 rw-p 0001e000 07:09 1578169
>/data/runtime/jails/samba.vc0/lib/ld-linux.so.2
>> Size:                  4 kB
>> Rss:                   4 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:         4 kB
>> Referenced:            4 kB
>> bfa8d000-bfaa2000 rw-p bffeb000 00:00 0          [stack]
>> Size:                 84 kB
>> Rss:                  40 kB
>> Shared_Clean:          0 kB
>> Shared_Dirty:          0 kB
>> Private_Clean:         0 kB
>> Private_Dirty:        40 kB
>> Referenced:           40 kB
>
>
>--
>SerNet GmbH, Bahnhofsallee 1b, 37081 Göttingen
>phone: +49-551-370000-0, fax: +49-551-370000-9
>AG Göttingen, HRB 2816, GF: Dr. Johannes Loxen
>http://www.sernet.de, mailto:kontakt at sernet.de


More information about the samba-technical mailing list