diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-12 15:22:26 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-12 15:22:26 +1000 |
commit | ca6e15f2f985d5ea1e907c05ae585152d385938e (patch) | |
tree | 18512360260f229c3846c531af2b03018c1b31be /source4/dsdb/repl/drepl_out_helpers.c | |
parent | 5c33042498763ce814c0539e0a96f73a06a76dfd (diff) | |
download | samba-ca6e15f2f985d5ea1e907c05ae585152d385938e.tar.gz samba-ca6e15f2f985d5ea1e907c05ae585152d385938e.tar.xz samba-ca6e15f2f985d5ea1e907c05ae585152d385938e.zip |
s4-repl: fixed memory leaks
These memory leaks were mostly caused by the fact that
refresh_partitions is now called periodically
Diffstat (limited to 'source4/dsdb/repl/drepl_out_helpers.c')
-rw-r--r-- | source4/dsdb/repl/drepl_out_helpers.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source4/dsdb/repl/drepl_out_helpers.c b/source4/dsdb/repl/drepl_out_helpers.c index 59b31764449..e90f2783b14 100644 --- a/source4/dsdb/repl/drepl_out_helpers.c +++ b/source4/dsdb/repl/drepl_out_helpers.c @@ -464,10 +464,8 @@ static void dreplsrv_update_refs_recv(struct rpc_request *req) c->status = dcerpc_ndr_request_recv(req); if (!composite_is_ok(c)) { - DEBUG(0,("UpdateRefs failed with %s for %s %s\n", - nt_errstr(c->status), - r->in.req.req1.dest_dsa_dns_name, - r->in.req.req1.naming_context->dn)); + DEBUG(0,("UpdateRefs failed with %s\n", + nt_errstr(c->status))); return; } |