diff options
author | Paul Smith <psmith@gnu.org> | 2008-03-28 03:46:39 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2008-03-28 03:46:39 +0000 |
commit | b23b0c3552d3e545049e69e25bf11257e011db45 (patch) | |
tree | b3ec2e2cc753f550b5f764a7d752af5bc882b4e0 | |
parent | bb7cb05da5abd29c38445331371aab4c37e175d2 (diff) | |
download | gunmake-b23b0c3552d3e545049e69e25bf11257e011db45.tar.gz |
Update the translation project location for PO files (again)
Apply fix for Savannah bug #22379.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | ar.c | 1 | ||||
-rw-r--r-- | maintMakefile | 2 | ||||
-rw-r--r-- | read.c | 1 |
4 files changed, 13 insertions, 1 deletions
@@ -1,3 +1,13 @@ +2008-03-27 Paul Smith <psmith@gnu.org> + + Fix Savannah bug #22379: + * ar.c (ar_glob_match): Zero the allocated structure. + * read.c (parse_file_seq): Ditto. + +2008-03-08 Brian Dessent <brian@dessent.net> + + * maintMakefile: Update Translation Project location. + 2008-01-26 Eli Zaretskii <eliz@gnu.org> * variable.c (target_environment): Don't use shell_var if its @@ -196,6 +196,7 @@ ar_glob_match (int desc UNUSED, const char *mem, int truncated UNUSED, { /* We have a match. Add it to the chain. */ struct nameseq *new = xmalloc (state->size); + memset (new, '\0', state->size); new->name = strcache_add (concat (state->arname, mem, ")")); new->next = state->chain; state->chain = new; diff --git a/maintMakefile b/maintMakefile index 90de55b..276457f 100644 --- a/maintMakefile +++ b/maintMakefile @@ -135,7 +135,7 @@ move_if_change = if test -r $(target) && cmp -s $(target).t $(target); then \ # http://translation.sf.net/maint/ # ftp://tiger.informatik.hu-berlin.de/pub/po/maint/ -po_repo = http://translationproject.org/maint/$(PACKAGE) +po_repo = http://translationproject.org/latest/$(PACKAGE) .PHONY: do-po-update po-update do-po-update: tmppo="/tmp/po-$(PACKAGE)-$(VERSION).$$$$" \ @@ -2426,6 +2426,7 @@ parse_file_seq (char **stringp, int stopchar, unsigned int size, int strip) /* Add it to the front of the chain. */ new1 = xmalloc (size); + memset (new1, '\0', size); new1->name = name; new1->next = new; new = new1; |