diff options
author | Jeremy Allison <jra@samba.org> | 2009-04-23 02:51:55 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-04-23 02:51:55 -0700 |
commit | 96932593df6db7a0084c87238b5c044e1a80a049 (patch) | |
tree | faac0ddefdbc67f6925c24b71d0712659d9a544f /source3/libads | |
parent | 0accf2cf0f5890c9adf17c3d738bdf6cb46841a4 (diff) | |
download | samba-96932593df6db7a0084c87238b5c044e1a80a049.tar.gz samba-96932593df6db7a0084c87238b5c044e1a80a049.tar.bz2 samba-96932593df6db7a0084c87238b5c044e1a80a049.zip |
Fix coverity #901 - uninitialized data.
Jeremy.
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap_printer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap_printer.c b/source3/libads/ldap_printer.c index 9be366dc29..7fec58c7eb 100644 --- a/source3/libads/ldap_printer.c +++ b/source3/libads/ldap_printer.c @@ -372,7 +372,7 @@ WERROR get_remote_printer_publishing_data(struct rpc_pipe_client *cli, } else { for (i=0; i < count; i++) { REGISTRY_VALUE v; - DATA_BLOB blob; + DATA_BLOB blob = data_blob_null; result = push_spoolss_PrinterData(mem_ctx, &blob, info[i].type, |