diff options
author | Günther Deschner <gd@samba.org> | 2005-02-24 17:00:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:46 -0500 |
commit | c3a5d90db43e6340e974f879f0c3b9c361bf3bb9 (patch) | |
tree | 9feae6b1944c6d62dbe1122386530ccdfc592d66 /source3/utils | |
parent | 8d06233d1115f56e586aa49a7871fbeb8b0ff76d (diff) | |
download | samba-c3a5d90db43e6340e974f879f0c3b9c361bf3bb9.tar.gz samba-c3a5d90db43e6340e974f879f0c3b9c361bf3bb9.tar.bz2 samba-c3a5d90db43e6340e974f879f0c3b9c361bf3bb9.zip |
r5541: Fix crash bug in the client-spoolss enumdataex-call.
With Windows2003 it's perfectly legal to receive no data when querying a
value-less subkey. Found while migrating printer settings.
Guenther
(This used to be commit 3e04def03377b2eae2987c87b18ccadf5b48a6fe)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc_printer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_printer.c b/source3/utils/net_rpc_printer.c index 456a29287f..00b038dd8b 100644 --- a/source3/utils/net_rpc_printer.c +++ b/source3/utils/net_rpc_printer.c @@ -980,7 +980,7 @@ net_spoolss_enumprinterdataex(struct cli_state *cli, TALLOC_CTX *mem_ctx, /* enumprinterdataex call */ result = cli_spoolss_enumprinterdataex( - cli, mem_ctx, 0, &needed, hnd, keyname, NULL); + cli, mem_ctx, 0, &needed, hnd, keyname, ctr); if (W_ERROR_V(result) == W_ERROR_V(WERR_MORE_DATA)) result = cli_spoolss_enumprinterdataex( |