Re: [PATCH] vfs: use kstrdup()

From: Al Viro
Date: Mon Jul 21 2008 - 04:29:18 EST


On Mon, Jul 21, 2008 at 12:04:27PM +0400, Cyrill Gorcunov wrote:
> err = mnt_alloc_id(mnt);
> - if (err) {
> - kmem_cache_free(mnt_cache, mnt);
> - return NULL;
> + if (err)
> + goto err;

Ugh... Labels are in a separate namespace, but really...

> + if (name) {
> + mnt->mnt_devname = kstrdup(name, GFP_KERNEL);
> + if (!mnt->mnt_devname)
> + goto err;

> +err:
> + kmem_cache_free(mnt_cache, mnt);
> + return NULL;

Leak; note the mnt_alloc_id() above. Either do that kstrdup() first and
kfree the result on mnt_alloc_id() failure or do mnt_free_id() on kstrdup()
one...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/