From: Martin Mares Date: Sat, 4 Jan 2003 13:56:46 +0000 (+0000) Subject: Line buffers are back on their original sizes, closes Bug #251. X-Git-Tag: holmes-import~1311 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=d955a64948e2bd4cab721567bdeed8a809331acb;p=libucw.git Line buffers are back on their original sizes, closes Bug #251. --- diff --git a/lib/object.c b/lib/object.c index d3e9b9aa..92d8dd24 100644 --- a/lib/object.c +++ b/lib/object.c @@ -63,7 +63,7 @@ obj_free(struct odes *o) int obj_read(struct fastbuf *f, struct odes *o) { - byte buf[4096]; + byte buf[1024]; struct oattr **last = &o->attrs; struct oattr *a, *la;