diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-25 21:20:39 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-25 21:20:39 +0100 |
commit | b679dda6c9e1faef890d28a2f1832b5c0b84deb4 (patch) | |
tree | 2507ce4a1fd6ebea5b3c211897575761f9f6fe80 /source3/rpcclient | |
parent | 6d387037b1969391b71ea56717e21a11ef05323e (diff) | |
download | samba-b679dda6c9e1faef890d28a2f1832b5c0b84deb4.tar.gz samba-b679dda6c9e1faef890d28a2f1832b5c0b84deb4.tar.bz2 samba-b679dda6c9e1faef890d28a2f1832b5c0b84deb4.zip |
Fix bogus uninitialized variable warnings
(This used to be commit 71d6580c837adcc2cddcdff561f6fb09701501ee)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_spoolss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_spoolss.c b/source3/rpcclient/cmd_spoolss.c index d98cb99276..b5282d2e9b 100644 --- a/source3/rpcclient/cmd_spoolss.c +++ b/source3/rpcclient/cmd_spoolss.c @@ -1252,7 +1252,7 @@ static bool init_drv_info_3_members ( TALLOC_CTX *mem_ctx, DRIVER_INFO_3 *info, { char *str, *str2; uint32 len, i; - char *saveptr; + char *saveptr = NULL; /* fill in the UNISTR fields */ str = get_driver_3_param (args, ":", &info->name); |