blob: 275f477e962e72954eeac2ae2dd7761ff37824ac (
plain) (
tree)
|
|
Seen in the Dzongkha translation of GConf 3.2.6:
/bin/sh: line 1: 25453 Aborted /usr/bin/msgfmt -o $file dz.po
This is what we expect to see having a short read of the line; the line in
question is 4,279 bytes long.
--- gettext-tiny-0.3.0_pre1/src/msgfmt.c.old 2018-06-21 04:47:19.927932643 +0000
+++ gettext-tiny-0.3.0_pre1/src/msgfmt.c 2018-07-12 01:23:59.250000000 +0000
@@ -370,8 +370,8 @@
int process(FILE *in, FILE *out) {
struct mo_hdr mohdr = def_hdr;
- char line[4096]; char *lp;
- char convbuf[16384];
+ char line[8448]; char *lp;
+ char convbuf[33792];
struct callbackdata d = {
.num = {
|