Re: [bug-gettext] Header syntax

2013-01-29 Thread Jakub Wilk
-c'. The list of problem classes ("tags") i18nspector currently is able to spot is available here: https://bitbucket.org/jwilk/i18nspector/raw/tip/data/tags -- Jakub Wilk

[bug-gettext] Obsolete country codes in locales_with_principal_territory

2015-06-28 Thread Jakub Wilk
d in 2010 */ As the comment says. the sr_YU entry should be removed. I'm not sure about the pap_AN entry; it should be either removed too, or scheduled for removal at some point in the future. -- Jakub Wilk

[bug-gettext] Duplicated words in gettext-runtime/m4/*.m4

2015-10-27 Thread Jakub Wilk
There are some duplicated words in the copying permission statements in gettext-runtime/m4/*.m4: ... This file can can be used ... ... gettext package package is covered ... -- Jakub Wilk

[bug-gettext] li.org mailing lists

2016-02-13 Thread Jakub Wilk
iple references to li.org mailing lists in the gettext codebase; for example xgettext puts "Language-Team: LANGUAGE " in the header. [0] https://translationproject.org/team/index.html -- Jakub Wilk

Re: [bug-gettext] Bug#876498: gettext: msgunfmt: heap corruption

2017-09-23 Thread Jakub Wilk
is 0 bytes after a block of size 2,096 alloc'd ... I am suspecting this is caused by a missing NUL termination in get_sysdep_string in read-mo.c, which should be fixed by the attached patch. Thanks. The patch fixes the crash and all valgrind warnings. -- Jakub Wilk

Re: [bug-gettext] Bug#876498: gettext: msgunfmt: heap corruption

2017-09-26 Thread Jakub Wilk
* Bruno Haible , 2017-09-24, 14:43: Jakub, thanks for the report. What exactly are you doing to construct these .mo files? Are you reviewing the code? Are you doing fuzzing? I'm fuzzing with American Fuzzy Lop: http://lcamtuf.coredump.cx/afl/ -- Jakub Wilk

[bug-gettext] Out-of-bounds read in term_ostream_create

2017-09-30 Thread Jakub Wilk
gnulib-local/lib/term-ostream.oo.c contains the following expression: (strlen (term) >= 4 && memcmp (term, "rxvt", 7) == 0) This should be of course s/7/4/. -- Jakub Wilk