Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/targa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/targa.c b/source/blender/imbuf/intern/targa.c
index 5698b14bd28..0ad4d0ae77d 100644
--- a/source/blender/imbuf/intern/targa.c
+++ b/source/blender/imbuf/intern/targa.c
@@ -358,8 +358,8 @@ static int checktarga(TARGA *tga, unsigned char *mem)
return(0);
}
if (tga->mapsize && tga->mapbits > 32) return(0);
- if (tga->xsize <= 0 || tga->xsize >= 4096) return(0);
- if (tga->ysize <= 0 || tga->ysize >= 4096) return(0);
+ if (tga->xsize <= 0 || tga->xsize >= 8192) return(0);
+ if (tga->ysize <= 0 || tga->ysize >= 8192) return(0);
if (tga->pixsize > 32) return(0);
if (tga->pixsize == 0) return(0);
return(1);