From 8dde143765822b5d5806a3ea80c468bca0a2178d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 6 Aug 2005 00:06:34 +0000 Subject: r9152: fix a crash bug metze (This used to be commit d1868bd5912c5bb90509ace5c7ac8589c29e423c) --- source4/utils/ndrdump.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source4/utils/ndrdump.c b/source4/utils/ndrdump.c index b80dbdc39c..078f1a1791 100644 --- a/source4/utils/ndrdump.c +++ b/source4/utils/ndrdump.c @@ -240,10 +240,9 @@ static char *stdin_load(TALLOC_CTX *mem_ctx, size_t *size) dump_data(0, ndr->data+ndr->offset, ndr->data_size - ndr->offset); } - pr = talloc(NULL, struct ndr_print); + pr = talloc_zero(NULL, struct ndr_print); pr->print = ndr_print_debug_helper; pr->depth = 1; - pr->flags = 0; f->ndr_print(pr, function, flags, st); if (!NT_STATUS_IS_OK(status) || -- cgit