summaryrefslogtreecommitdiff
path: root/src/msgfmt.c
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2012-12-25 06:03:24 +0100
committerrofl0r <retnyg@gmx.net>2012-12-25 06:03:48 +0100
commit92e039f526ef7988a9b8cf500fd45a3a5b045ced (patch)
treeeb6f9945eec57d64c0eaf0c2cc885e5acf4311c2 /src/msgfmt.c
parentddf6dfea27f4a7d57ed73a4f5a146b6b704e9103 (diff)
downloadgettext-tiny-0.0.2.tar.gz
fix assertion error on huge string found in gnumericv0.0.2
the culprit is: gnumeric-1.10.17/po-functions/dz.po basically the code was wrongly checking for the end of the convert buffer, instead of the line buffer. this is no problem per se because the line buffer gets reset more often, but when the convertbuffer is bigger (like after this change) it wouldnt work correctly. i put the convert_buf functions into a separate translation unit and renamed them to escape and unescape to make it more clear what they're doing. also new: size checks for the escape functions. currently it will silently truncate the strings when the buffer runs out of space. this is sufficient for no-op style, but should be fixed at some point.
Diffstat (limited to 'src/msgfmt.c')
-rw-r--r--src/msgfmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msgfmt.c b/src/msgfmt.c
index 3961fa3..bf5f343 100644
--- a/src/msgfmt.c
+++ b/src/msgfmt.c
@@ -129,7 +129,7 @@ int process_line_callback(struct po_info* info, void* user) {
int process(FILE *in, FILE *out) {
struct mo_hdr mohdr = def_hdr;
char line[4096]; char *lp;
- char convbuf[4096];
+ char convbuf[16384];
struct callbackdata d = {
.num = {