From cd49586b29d754e497d10ed18be5d9b27e8c4a3d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 26 Sep 2008 23:39:32 +0200 Subject: libgpo: fix invalid cast in scripts CSE. Guenther --- source3/libgpo/gpext/scripts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/libgpo/gpext/scripts.c b/source3/libgpo/gpext/scripts.c index c07407c3f0..02c3abaa1e 100644 --- a/source3/libgpo/gpext/scripts.c +++ b/source3/libgpo/gpext/scripts.c @@ -93,7 +93,7 @@ static NTSTATUS generate_gp_registry_entry(TALLOC_CTX *mem_ctx, data->type = data_type; switch (data->type) { case REG_QWORD: - data->v.qword = (uint64_t)data_p; + data->v.qword = *(uint64_t *)data_p; break; case REG_SZ: data->v.sz.str = talloc_strdup(mem_ctx, (char *)data_p); -- cgit