diff options
author | Volker Lendecke <vl@samba.org> | 2008-03-23 19:38:02 +0100 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2008-03-27 16:20:15 +0100 |
commit | 086372d10c20cb691262559a32c86d6e14ae4f50 (patch) | |
tree | aaadcb75a437952e79d7258d7321c8ad17112476 | |
parent | c02067f4da009be7ef021b05686d7bc00091873e (diff) | |
download | samba-086372d10c20cb691262559a32c86d6e14ae4f50.tar.gz samba-086372d10c20cb691262559a32c86d6e14ae4f50.tar.xz samba-086372d10c20cb691262559a32c86d6e14ae4f50.zip |
Fix Coverity ID 503
(cherry picked from commit 5c43c38271bae7d96d0cfbdaba7bff838a684b40)
-rw-r--r-- | source/rpc_parse/parse_spoolss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_parse/parse_spoolss.c b/source/rpc_parse/parse_spoolss.c index 3bf8ef27c1e..d762cb2ca79 100644 --- a/source/rpc_parse/parse_spoolss.c +++ b/source/rpc_parse/parse_spoolss.c @@ -4785,7 +4785,7 @@ bool spoolss_io_q_addprinterex(const char *desc, SPOOL_Q_ADDPRINTEREX *q_u, prs_ if (!sec_io_desc_buf(desc, &q_u->secdesc_ctr, ps, depth)) return False; } else { - uint32 dummy; + uint32 dummy = 0; /* Parse a NULL security descriptor. This should really happen inside the sec_io_desc_buf() function. */ |