From d455b72bdd23a1d7adcbdfb5c1ceabcd7beaf853 Mon Sep 17 00:00:00 2001 From: Dia Vasile Date: Sun, 10 Mar 2013 14:29:04 +0200 Subject: cifs: replaced kmalloc + memset with kzalloc Signed-off-by: Diana Vasile Signed-off-by: Steve French Signed-off-by: Steve French --- fs/cifs/smb2pdu.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'fs/cifs/smb2pdu.c') diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index 41d9d0725f0f..83ef66ed4c84 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c @@ -846,12 +846,10 @@ create_lease_buf(u8 *lease_key, u8 oplock) { struct create_lease *buf; - buf = kmalloc(sizeof(struct create_lease), GFP_KERNEL); + buf = kzalloc(sizeof(struct create_lease), GFP_KERNEL); if (!buf) return NULL; - memset(buf, 0, sizeof(struct create_lease)); - buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key)); buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8))); if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE) -- cgit v1.2.3-59-g8ed1b