From: Jeremy Allison Date: Wed, 21 Mar 2007 18:33:13 +0000 (+0000) Subject: r21916: Fix couple of "return" calls on void functions. X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~888 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a184bdbe3c7bf0c44a8141898bfcb9971a332312;p=thirdparty%2Fsamba.git r21916: Fix couple of "return" calls on void functions. Ensure we ignore reqests to free keepalive buffers as we only copied these. Jeremy. --- diff --git a/source/libsmb/smb_seal.c b/source/libsmb/smb_seal.c index 7a27f88a2ee..9ea3a103509 100644 --- a/source/libsmb/smb_seal.c +++ b/source/libsmb/smb_seal.c @@ -238,6 +238,14 @@ void common_free_enc_buffer(struct smb_trans_enc_state *es, char *buf) return; } + /* We know this is an smb buffer, and we + * didn't malloc, only copy, for a keepalive, + * so ignore session keepalives. */ + + if(CVAL(buf,0) == SMBkeepalive) { + return; + } + if (es->smb_enc_type == SMB_TRANS_ENC_NTLM) { SAFE_FREE(buf); return; @@ -267,7 +275,7 @@ BOOL cli_encryption_on(struct cli_state *cli) void cli_free_encryption_context(struct cli_state *cli) { - return common_free_encryption_state(&cli->trans_enc_state); + common_free_encryption_state(&cli->trans_enc_state); } /****************************************************************************** @@ -276,7 +284,7 @@ void cli_free_encryption_context(struct cli_state *cli) void cli_free_enc_buffer(struct cli_state *cli, char *buf) { - return common_free_enc_buffer(cli->trans_enc_state, buf); + common_free_enc_buffer(cli->trans_enc_state, buf); } /******************************************************************************