diff options
author | Sumit Bose <sbose@redhat.com> | 2010-09-17 10:33:08 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-17 11:51:56 +0200 |
commit | e2d6b64219b883363b4d1d92db27bf180c887d07 (patch) | |
tree | 92a749c5ef39561e483155cf32ebf6789ef022cd /source3/libsmb/cliconnect.c | |
parent | 90d685afe57e08ce7da575783c4d279e1be021f6 (diff) | |
download | samba-e2d6b64219b883363b4d1d92db27bf180c887d07.tar.gz samba-e2d6b64219b883363b4d1d92db27bf180c887d07.tar.xz samba-e2d6b64219b883363b4d1d92db27bf180c887d07.zip |
Fix array size of a memmber of struct cli_ulogoff_state
The too small array makes UID-REGRESSION-FIX fail on 32bit
architectures.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/libsmb/cliconnect.c')
-rw-r--r-- | source3/libsmb/cliconnect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index 169bf4f0376..ebfc98b1795 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -1498,7 +1498,7 @@ NTSTATUS cli_session_setup(struct cli_state *cli, struct cli_ulogoff_state { struct cli_state *cli; - uint16_t vwv[2]; + uint16_t vwv[3]; }; static void cli_ulogoff_done(struct tevent_req *subreq); |