* Jiri Kosina <[EMAIL PROTECTED]> wrote:

> +     name = kmalloc(sizeof(char) * UDF_NAME_LEN, GFP_KERNEL);
> +     fname = kmalloc(sizeof(char) * UDF_NAME_LEN, GFP_KERNEL);
> +
> +     if (!name || !fname) {
> +             *err = -ENOMEM;
> +             return NULL;
> +     }
> +
>       if (dentry) {
>               if (!dentry->d_name.len) {
>                       *err = -EINVAL;

this bit is missing i think:

        if (name)
                kfree(name);
        if (fname)
                kfree(fname);

        Ingo
--
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/

Reply via email to