diff options
author | Simo Sorce <idra@samba.org> | 2007-12-05 17:54:09 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2007-12-05 17:54:09 -0500 |
commit | 7f2ec207796bfcf92fc3bdd3b868337c343328a3 (patch) | |
tree | a362d99c9fb3e9048ea895f30a808a90e5fb90c0 | |
parent | 84ed970d606b5dc211a619309e2d101b9579f973 (diff) | |
download | samba-7f2ec207796bfcf92fc3bdd3b868337c343328a3.tar.gz samba-7f2ec207796bfcf92fc3bdd3b868337c343328a3.tar.bz2 samba-7f2ec207796bfcf92fc3bdd3b868337c343328a3.zip |
Fix warning
(This used to be commit 05bca093d107609f236928f338e2512a628c2c91)
-rw-r--r-- | source3/client/cifs.spnego.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/cifs.spnego.c b/source3/client/cifs.spnego.c index 8cc4606613..caa22276c4 100644 --- a/source3/client/cifs.spnego.c +++ b/source3/client/cifs.spnego.c @@ -148,7 +148,7 @@ int decode_key_description(const char *desc, int *ver, secType_t * sec, int main(const int argc, char *const argv[]) { - struct cifs_spnego_msg *keydata; + struct cifs_spnego_msg *keydata = NULL; DATA_BLOB secblob = data_blob_null; DATA_BLOB sess_key = data_blob_null; secType_t sectype; |