diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-05-22 01:02:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:52:45 -0500 |
commit | 145a9dd010498440f5f5367eb1f28b05a9178462 (patch) | |
tree | 8b7daa26044a3e8aa0eedd27fce3ef0faa0026c6 | |
parent | 86b91f50731d5e8a3497027d8ac7b2ca001eeaa7 (diff) | |
download | samba-145a9dd010498440f5f5367eb1f28b05a9178462.tar.gz samba-145a9dd010498440f5f5367eb1f28b05a9178462.tar.bz2 samba-145a9dd010498440f5f5367eb1f28b05a9178462.zip |
r23059: reject_free needs to be initialised
(This used to be commit ffb8b493161f6951dabb94f2e9ee4c2f2c11b4e0)
-rw-r--r-- | source4/lib/messaging/messaging.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/lib/messaging/messaging.c b/source4/lib/messaging/messaging.c index 9b4f4b49c4..58b5e5243e 100644 --- a/source4/lib/messaging/messaging.c +++ b/source4/lib/messaging/messaging.c @@ -825,6 +825,7 @@ struct irpc_request *irpc_call_send(struct messaging_context *msg_ctx, irpc->done = False; irpc->async.fn = NULL; irpc->mem_ctx = ctx; + irpc->reject_free = False; talloc_set_destructor(irpc, irpc_destructor); |