summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@rei2.9hal>2012-03-14 23:49:51 +0100
committercinap_lenrek <cinap_lenrek@rei2.9hal>2012-03-14 23:49:51 +0100
commit1f34d714d20882d2638b3e63d82156c21ca4eebf (patch)
treeb1bf27465b55609cde2fc7d2e47fd621e148f087
parent20c27e0197f1907327b69b6ffbb1b1793dd25a58 (diff)
downloadplan9front-1f34d714d20882d2638b3e63d82156c21ca4eebf.tar.xz
png: increase buffer size
-rw-r--r--sys/src/cmd/jpg/readpng.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/jpg/readpng.c b/sys/src/cmd/jpg/readpng.c
index a1ef1ff79..750a6009d 100644
--- a/sys/src/cmd/jpg/readpng.c
+++ b/sys/src/cmd/jpg/readpng.c
@@ -10,7 +10,7 @@ int debug;
enum
{
- IDATSIZE = 1000000,
+ IDATSIZE = 8*1024*1024,
/* filtering algorithms */
FilterNone = 0, /* new[x][y] = buf[x][y] */