diff options
author | Volker Lendecke <vl@samba.org> | 2013-08-18 20:35:32 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-08-19 11:08:29 +1200 |
commit | cc983c9a6a92f3d127ec6461b15aed3fa90e6d30 (patch) | |
tree | 1313df229866c7631fc4b00ca5478da803f1f6c0 /source3/smbd | |
parent | cb598ddab6935820975042a8a307c75dba9d7e31 (diff) | |
download | samba-cc983c9a6a92f3d127ec6461b15aed3fa90e6d30.tar.gz samba-cc983c9a6a92f3d127ec6461b15aed3fa90e6d30.tar.bz2 samba-cc983c9a6a92f3d127ec6461b15aed3fa90e6d30.zip |
smbd: Fix CID 1063259 Uninitialized scalar variable
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 3fbfc37578..b8e01ba8aa 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -165,6 +165,7 @@ bool srv_send_smb(struct smbd_server_connection *sconn, char *buffer, DEBUG(0, ("send_smb: SMB encryption failed " "on outgoing packet! Error %s\n", nt_errstr(status) )); + ret = -1; goto out; } } |