summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
Diffstat (limited to 'source4')
-rw-r--r--source4/librpc/ndr/ndr.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/source4/librpc/ndr/ndr.c b/source4/librpc/ndr/ndr.c
index 9e307a3f38..a7f34ec002 100644
--- a/source4/librpc/ndr/ndr.c
+++ b/source4/librpc/ndr/ndr.c
@@ -272,16 +272,20 @@ char *ndr_print_function_string(TALLOC_CTX *mem_ctx,
int flags, void *ptr)
{
struct ndr_print *ndr;
- char *ret;
+ char *ret = NULL;
ndr = talloc_zero(mem_ctx, struct ndr_print);
if (!ndr) return NULL;
- ndr->private = talloc_strdup(mem_ctx, "");
+ ndr->private = talloc_strdup(ndr, "");
+ if (!ndr->private) {
+ goto failed;
+ }
ndr->print = ndr_print_string_helper;
ndr->depth = 1;
ndr->flags = 0;
fn(ndr, name, flags, ptr);
- ret = ndr->private;
+ ret = talloc_steal(mem_ctx, ndr->private);
+failed:
talloc_free(ndr);
return ret;
}