From: Eric Paris on 14 May 2010 16:10 On Fri, 2010-05-14 at 21:30 +0200, Julia Lawall wrote: > From: Julia Lawall <julia(a)diku.dk> > > Use kstrdup when the goal of an allocation is copy a string into the > allocated region. > > The semantic patch that makes this change is as follows: > (http://coccinelle.lip6.fr/) > > // <smpl> > @@ > expression from,to; > expression flag,E1,E2; > statement S; > @@ > > - to = kmalloc(strlen(from) + 1,flag); > + to = kstrdup(from, flag); > ... when != \(from = E1 \| to = E1 \) > if (to==NULL || ...) S > ... when != \(from = E2 \| to = E2 \) > - strcpy(to, from); > // </smpl> > > Signed-off-by: Julia Lawall <julia(a)diku.dk> Acked-by: Eric Paris <eparis(a)redhat.com> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: James Morris on 16 May 2010 19:10 On Fri, 14 May 2010, Julia Lawall wrote: > From: Julia Lawall <julia(a)diku.dk> > > Use kstrdup when the goal of an allocation is copy a string into the > allocated region. > Applied to git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6#next -- James Morris <jmorris(a)namei.org> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: fs/ocfs2/dlm: Use kstrdup Next: [PATCH] anon_inode: set S_IFREG on the anon_inode |