List for cgit developers and users
 help / color / mirror / Atom feed
From: john at keeping.me.uk (John Keeping)
Subject: [PATCH 1/1] git: update to v2.2.0
Date: Thu, 27 Nov 2014 09:05:51 +0000	[thread overview]
Message-ID: <20141127090551.GA1278@serenity.lan> (raw)
In-Reply-To: <1417048256-480-1-git-send-email-list@eworm.de>

On Thu, Nov 27, 2014 at 01:30:56AM +0100, Christian Hesse wrote:
> Update to git version v2.2.0, including API changes.
> ---
[...]
> diff --git a/ui-repolist.c b/ui-repolist.c
> index c2bcce1..0e57c53 100644
> --- a/ui-repolist.c
> +++ b/ui-repolist.c
> @@ -17,16 +17,18 @@ static time_t read_agefile(char *path)
>  	time_t result;
>  	size_t size;
>  	char *buf;
> -	static char buf2[64];
> +	struct strbuf date_buf = STRBUF_INIT;
>  
>  	if (readfile(path, &buf, &size))
>  		return -1;
>  
> -	if (parse_date(buf, buf2, sizeof(buf2)) > 0)
> -		result = strtoul(buf2, NULL, 10);
> +	strbuf_reset(&date_buf);

Why is this necessary?  date_buf hasn't been used since it was
initialized.

> +	if (parse_date(buf, &date_buf) == 0)
> +		result = strtoul(date_buf.buf, NULL, 10);
>  	else
>  		result = 0;
>  	free(buf);
> +	strbuf_release(&date_buf);
>  	return result;
>  }
>  


  reply	other threads:[~2014-11-27  9:05 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-27  0:30 list
2014-11-27  9:05 ` john [this message]
2014-11-27 20:35   ` list
2014-11-27 20:41     ` list

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=20141127090551.GA1278@serenity.lan \
    --to=cgit@lists.zx2c4.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 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).