Re: [PATCH] ipc: Convert kmalloc()+memset() to kzalloc() in ipc/.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>diff --git a/ipc/sem.c b/ipc/sem.c
>index 21b3289..3c23dc9 100644
>--- a/ipc/sem.c
>+++ b/ipc/sem.c
>@@ -1070,14 +1070,13 @@ static struct sem_undo *find_undo(struct
> 	ipc_rcu_getref(sma);
> 	sem_unlock(sma);
>
>-	new = (struct sem_undo *) kmalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
>+	new = (struct sem_undo *) kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);

You can drop the case in one go.



	-`J'
-- 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux