summaryrefslogtreecommitdiff
path: root/source3/rpcclient/cmd_ntsvcs.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-11-19 23:02:49 +0100
committerGünther Deschner <gd@samba.org>2008-11-19 23:25:16 +0100
commit9b40d26e30518c666e4dad9cf55ec319cf19e28e (patch)
tree0645d1805eb32289ab3afd4086d4826b2c782464 /source3/rpcclient/cmd_ntsvcs.c
parent07b3a1e988deae2e2d8d619fb2792dd0a719504f (diff)
downloadsamba-9b40d26e30518c666e4dad9cf55ec319cf19e28e.tar.gz
samba-9b40d26e30518c666e4dad9cf55ec319cf19e28e.tar.bz2
samba-9b40d26e30518c666e4dad9cf55ec319cf19e28e.zip
s3-rpcclient: fix cmd_ntsvcs_get_dev_reg_prop.
Guenther
Diffstat (limited to 'source3/rpcclient/cmd_ntsvcs.c')
-rw-r--r--source3/rpcclient/cmd_ntsvcs.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source3/rpcclient/cmd_ntsvcs.c b/source3/rpcclient/cmd_ntsvcs.c
index 11f16d3462..eb620d06b2 100644
--- a/source3/rpcclient/cmd_ntsvcs.c
+++ b/source3/rpcclient/cmd_ntsvcs.c
@@ -149,13 +149,13 @@ static WERROR cmd_ntsvcs_get_dev_reg_prop(struct rpc_pipe_client *cli,
const char *devicepath = NULL;
uint32_t property = DEV_REGPROP_DESC;
uint32_t reg_data_type = REG_NONE;
- uint8_t buffer;
+ uint8_t *buffer;
uint32_t buffer_size = 0;
uint32_t needed = 0;
uint32_t flags = 0;
if (argc < 2) {
- printf("usage: %s [devicepath]\n", argv[0]);
+ printf("usage: %s [devicepath] [buffersize]\n", argv[0]);
return WERR_OK;
}
@@ -166,11 +166,14 @@ static WERROR cmd_ntsvcs_get_dev_reg_prop(struct rpc_pipe_client *cli,
needed = buffer_size;
}
+ buffer = talloc_array(mem_ctx, uint8_t, buffer_size);
+ W_ERROR_HAVE_NO_MEMORY(buffer);
+
status = rpccli_PNP_GetDeviceRegProp(cli, mem_ctx,
devicepath,
property,
&reg_data_type,
- &buffer,
+ buffer,
&buffer_size,
&needed,
flags,