diff options
author | Jeremy Allison <jra@samba.org> | 2005-05-03 07:33:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:46 -0500 |
commit | 7b9d6ac23e1a7d8136fffd2e3977b09a815da65a (patch) | |
tree | c224433cb1cbc7ff17bd03aca1b564ebeefe15a2 /source3/printing | |
parent | 114067ced1d301a3c8b67aee0af0eab771d44dd4 (diff) | |
download | samba-7b9d6ac23e1a7d8136fffd2e3977b09a815da65a.tar.gz samba-7b9d6ac23e1a7d8136fffd2e3977b09a815da65a.tar.bz2 samba-7b9d6ac23e1a7d8136fffd2e3977b09a815da65a.zip |
r6595: This is Volkers new-talloc patch. Just got the go-ahead from
Volker to commit. Woo Hoo !
Jeremy.
(This used to be commit 316df944a456f150944761dab34add5e8c4ab699)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/notify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/printing/notify.c b/source3/printing/notify.c index 0071d3d8c0..e289eba1b6 100644 --- a/source3/printing/notify.c +++ b/source3/printing/notify.c @@ -130,7 +130,7 @@ static void print_notify_send_messages_to_printer(const char *printer, unsigned if (strequal(printer, pq->msg->printer)) { if (!flatten_message(pq)) { DEBUG(0,("print_notify_send_messages: Out of memory\n")); - talloc_destroy_pool(send_ctx); + talloc_free_children(send_ctx); num_messages = 0; return; } @@ -143,7 +143,7 @@ static void print_notify_send_messages_to_printer(const char *printer, unsigned buf = TALLOC(send_ctx, offset); if (!buf) { DEBUG(0,("print_notify_send_messages: Out of memory\n")); - talloc_destroy_pool(send_ctx); + talloc_free_children(send_ctx); num_messages = 0; return; } @@ -201,7 +201,7 @@ void print_notify_send_messages(unsigned int timeout) while (print_notify_messages_pending()) print_notify_send_messages_to_printer(notify_queue_head->msg->printer, timeout); - talloc_destroy_pool(send_ctx); + talloc_free_children(send_ctx); num_messages = 0; } |