summaryrefslogtreecommitdiff
path: root/source3/services
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-03-15 10:54:59 +0100
committerVolker Lendecke <vl@samba.org>2011-03-15 11:10:43 +0100
commit31ff8f38e7d22402224996341c705e564e597d34 (patch)
tree5325a22bb5361d6042b83bb9143552b0096c7a66 /source3/services
parent09677d664f2a5c254549597f5b2b5203fcb0a23e (diff)
downloadsamba-31ff8f38e7d22402224996341c705e564e597d34.tar.gz
s3: Fix Coverity ID 2287: Uninitialized read
We passed the structure including the uninitialized elements to dcerpc_winreg_CreateKey.
Diffstat (limited to 'source3/services')
-rw-r--r--source3/services/svc_winreg_glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/services/svc_winreg_glue.c b/source3/services/svc_winreg_glue.c
index 65f03881674..dc367c2c41d 100644
--- a/source3/services/svc_winreg_glue.c
+++ b/source3/services/svc_winreg_glue.c
@@ -197,7 +197,7 @@ bool svcctl_set_secdesc(struct messaging_context *msg_ctx,
{
enum winreg_CreateAction action = REG_ACTION_NONE;
- struct winreg_String wkey;
+ struct winreg_String wkey = { 0, };
struct winreg_String wkeyclass;
wkey.name = talloc_asprintf(tmp_ctx, "%s\\Security", key);