From: Timo Hirvonen <tihirvon@gmail.com>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: git@vger.kernel.org, junkio@cox.net
Subject: Re: [PATCH] Make git-fmt-merge-msg a builtin
Date: Mon, 3 Jul 2006 18:26:21 +0300 [thread overview]
Message-ID: <20060703182621.dbed5b5f.tihirvon@gmail.com> (raw)
In-Reply-To: <Pine.LNX.4.63.0607031632290.29667@wbgn013.biozentrum.uni-wuerzburg.de>
Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> I had in mind that I want to use path-list instead (which is cooking in
> the merge-recursive efforts ATM). And there, I would add a flag
> needs_payload. Opinions?
This code is so simple that making the path_list more complex
(needs_payload special case?) is not worth it. I have not looked at the
code very closely though and have no idea what I'm talking about :)
> > > +static void free_list(struct list *list)
> > > +{
> > > + int i;
> > > +
> > > + if (list->alloc == 0)
> > > + return;
> >
> > Unnecessary if nr is 0 too.
>
> No. If nr == 0, alloc need not be 0, and if it is not, list and payload
> are still allocated.
If alloc is 0 then nr is 0 too (at least it _should_ be). The code would
effectively become:
for (i = 0; i < 0; i++) {
...
}
free(NULL);
free(NULL);
list->nr = list->alloc = 0;
But this is not important...
> > free(NULL) is safe.
>
> Is it? I vaguely remember that I had problems with this on some obscure
> platform.
I don't think so.
--
http://onion.dynserv.net/~timo/
next prev parent reply other threads:[~2006-07-03 15:26 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-03 13:31 [PATCH] Make git-fmt-merge-msg a builtin Johannes Schindelin
2006-07-03 14:17 ` Timo Hirvonen
2006-07-03 14:36 ` Johannes Schindelin
2006-07-03 15:26 ` Timo Hirvonen [this message]
2006-07-03 15:45 ` Johannes Schindelin
2006-07-03 16:16 ` Timo Hirvonen
2006-07-03 21:29 ` Johannes Schindelin
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=20060703182621.dbed5b5f.tihirvon@gmail.com \
--to=tihirvon@gmail.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).