diff options
| author | cinap_lenrek <cinap_lenrek@rei2.9hal> | 2012-03-14 23:49:51 +0100 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@rei2.9hal> | 2012-03-14 23:49:51 +0100 |
| commit | 1f34d714d20882d2638b3e63d82156c21ca4eebf (patch) | |
| tree | b1bf27465b55609cde2fc7d2e47fd621e148f087 | |
| parent | 20c27e0197f1907327b69b6ffbb1b1793dd25a58 (diff) | |
| download | plan9front-1f34d714d20882d2638b3e63d82156c21ca4eebf.tar.xz | |
png: increase buffer size
| -rw-r--r-- | sys/src/cmd/jpg/readpng.c | 2 |
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] */ |
