From 34413e47070e789c1b547647a409fac9929938d4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 3 Jun 2008 01:37:55 +0200 Subject: netapi: fix some build warnings. Guenther (This used to be commit 45cd78030f18a792d0761160bb96116d19801109) --- source3/lib/netapi/group.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/lib/netapi/group.c') diff --git a/source3/lib/netapi/group.c b/source3/lib/netapi/group.c index f56c92175b..00e995dc83 100644 --- a/source3/lib/netapi/group.c +++ b/source3/lib/netapi/group.c @@ -39,10 +39,10 @@ WERROR NetGroupAdd_r(struct libnetapi_ctx *ctx, struct dom_sid2 *domain_sid = NULL; uint32_t rid = 0; - struct GROUP_INFO_0 *info0; - struct GROUP_INFO_1 *info1; - struct GROUP_INFO_2 *info2; - struct GROUP_INFO_3 *info3; + struct GROUP_INFO_0 *info0 = NULL; + struct GROUP_INFO_1 *info1 = NULL; + struct GROUP_INFO_2 *info2 = NULL; + struct GROUP_INFO_3 *info3 = NULL; union samr_GroupInfo info; ZERO_STRUCT(connect_handle); -- cgit