summaryrefslogtreecommitdiff
path: root/source4/lib/registry/regf.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-02-05 09:39:03 +0100
committerStefan Metzmacher <metze@samba.org>2009-02-05 17:48:10 +0100
commit4cb9ccd84125708613074c2371f9507755ad4115 (patch)
treed9d1f215eb032733d632ff0e98c9b23222d0f743 /source4/lib/registry/regf.c
parentb493bc1aa11bfd479420318f57944285182ab548 (diff)
downloadsamba-4cb9ccd84125708613074c2371f9507755ad4115.tar.gz
samba-4cb9ccd84125708613074c2371f9507755ad4115.tar.bz2
samba-4cb9ccd84125708613074c2371f9507755ad4115.zip
s4:lib/registry: fix c++ warnings
metze
Diffstat (limited to 'source4/lib/registry/regf.c')
-rw-r--r--source4/lib/registry/regf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/regf.c b/source4/lib/registry/regf.c
index 4cbcb09a10..fbb9cd9de9 100644
--- a/source4/lib/registry/regf.c
+++ b/source4/lib/registry/regf.c
@@ -543,7 +543,7 @@ static WERROR regf_get_value(TALLOC_CTX *ctx, struct hive_key *key,
if (vk->data_length & 0x80000000) {
vk->data_length &=~0x80000000;
- data->data = talloc_memdup(ctx, (uint8_t *)&vk->data_offset, vk->data_length);
+ data->data = (uint8_t *)talloc_memdup(ctx, (uint8_t *)&vk->data_offset, vk->data_length);
data->length = vk->data_length;
} else {
*data = hbin_get(regf, vk->data_offset);