summaryrefslogtreecommitdiff
path: root/source3/utils/net_rpc_registry.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-04 17:24:53 +0200
committerMichael Adam <obnox@samba.org>2008-04-04 17:24:53 +0200
commitae790f9b89779a0fa1ba4ecfb5b99df160d222fd (patch)
tree990e50a84f6dae480867d93eb6cf212f5d4c7fe7 /source3/utils/net_rpc_registry.c
parent65088387c061aebd8a847857a5fc87ca7a9257f3 (diff)
downloadsamba-ae790f9b89779a0fa1ba4ecfb5b99df160d222fd.tar.gz
samba-ae790f9b89779a0fa1ba4ecfb5b99df160d222fd.tar.bz2
samba-ae790f9b89779a0fa1ba4ecfb5b99df160d222fd.zip
net: change split_hive_key() to properly allocate subkeyname
instead of returning a pointer into another string. Michael (This used to be commit 68d08ecf92be3444b759300237b2b7cf5238d022)
Diffstat (limited to 'source3/utils/net_rpc_registry.c')
-rw-r--r--source3/utils/net_rpc_registry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_registry.c b/source3/utils/net_rpc_registry.c
index 0d1f068862..92aaf06411 100644
--- a/source3/utils/net_rpc_registry.c
+++ b/source3/utils/net_rpc_registry.c
@@ -28,7 +28,7 @@ static bool reg_hive_key(TALLOC_CTX *ctx, const char *fullname,
{
WERROR werr;
char *hivename = NULL;
- const char *tmp_keyname = NULL;
+ char *tmp_keyname = NULL;
bool ret = false;
TALLOC_CTX *tmp_ctx = talloc_stackframe();