From feff1fcfd8844859b339bc14c2fe4650b3784fe4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 7 Jul 2007 21:41:59 +0000 Subject: r23746: Fix missing assignments to target string of asprintf in import function. Michael (This used to be commit 6b1bf7c1f49f737ca3cbee96b184e3b21fdc4931) --- source3/utils/net_conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 6f23a00177..febc8dc9e1 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -527,7 +527,7 @@ static int import_process_service(TALLOC_CTX *ctx, } break; case P_OCTAL: - talloc_asprintf(ctx, "%s", octal_string(*(int *)ptr)); + valstr = talloc_asprintf(ctx, "%s", octal_string(*(int *)ptr)); break; case P_LIST: valstr = talloc_strdup(ctx, ""); @@ -553,7 +553,7 @@ static int import_process_service(TALLOC_CTX *ctx, break; case P_INTEGER: valtype = "dword"; - talloc_asprintf(ctx, "%d", *(int *)ptr); + valstr = talloc_asprintf(ctx, "%d", *(int *)ptr); break; case P_SEP: break; -- cgit