All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Weinberger <richard@nod.at>
To: Vitaliy Ivanov <vitalivanov@gmail.com>
Cc: dave@gnu.org, Jeff Dike <jdike@addtoit.com>,
	uml <user-mode-linux-devel@lists.sourceforge.net>,
	lkml <linux-kernel@vger.kernel.org>,
	Jim Meyering <meyering@redhat.com>
Subject: Re: [PATCH] uml: free resources
Date: Thu, 7 Jul 2011 15:27:08 +0200	[thread overview]
Message-ID: <201107071527.08345.richard@nod.at> (raw)
In-Reply-To: <CAGTPOqdm7_PP68mKLQT3gigmUMD6wpoKk3sSWfXk9jeJPX+_6A@mail.gmail.com>

Am Donnerstag 07 Juli 2011, 15:08:22 schrieb Vitaliy Ivanov:
> On Thu, Jul 7, 2011 at 7:02 AM, Davidlohr Bueso <dave@gnu.org> wrote:
> > From: Davidlohr Bueso <dave@gnu.org>
> > 
> > When creating the temp file there's a memory and file descriptor leak
> > upon error.
> > 
> > Signed-off-by: Davidlohr Bueso <dave@gnu.org>
> > ---
> >  arch/um/os-Linux/mem.c |    6 ++++--
> >  1 files changed, 4 insertions(+), 2 deletions(-)
> > 
> > diff --git a/arch/um/os-Linux/mem.c b/arch/um/os-Linux/mem.c
> > index e696144..62878cf 100644
> > --- a/arch/um/os-Linux/mem.c
> > +++ b/arch/um/os-Linux/mem.c
> > @@ -176,7 +176,7 @@ static int __init make_tempfile(const char *template,
> > char **out_tempname,
> > 
> >        find_tempdir();
> >        if ((tempdir == NULL) || (strlen(tempdir) >= MAXPATHLEN))
> > -               return -1;
> > +               goto out;
> > 
> >        if (template[0] != '/')
> >                strcpy(tempname, tempdir);
> > @@ -191,13 +191,15 @@ static int __init make_tempfile(const char
> > *template, char **out_tempname, }
> >        if (do_unlink && (unlink(tempname) < 0)) {
> >                perror("unlink");
> > -               goto out;
> > +               goto close;
> >        }
> >        if (out_tempname) {
> >                *out_tempname = tempname;
> >        } else
> >                free(tempname);
> >        return fd;
> > +close:
> > +       close(fd);
> >  out:
> >        free(tempname);
> >        return -1;
> > --
> 
> Reviewed-by: Vitaliy Ivanov <vitalivanov@gmail.com>

Applied!

Thanks,
//richard

P.s: Dave, your patch did not show up on user-mode-linux-devel@lists.sourceforge.net nor 
richard@nod.at, is your mailer broken?

      reply	other threads:[~2011-07-07 13:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-07  4:02 [PATCH] uml: free resources Davidlohr Bueso
2011-07-07 13:08 ` Vitaliy Ivanov
2011-07-07 13:08   ` Vitaliy Ivanov
2011-07-07 13:27   ` Richard Weinberger [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201107071527.08345.richard@nod.at \
    --to=richard@nod.at \
    --cc=dave@gnu.org \
    --cc=jdike@addtoit.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=meyering@redhat.com \
    --cc=user-mode-linux-devel@lists.sourceforge.net \
    --cc=vitalivanov@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.