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:
authorCampbell Barton <ideasman42@gmail.com>2010-11-17 07:02:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-17 07:02:19 +0300
commitf791d74f102dcfed69a95d605e3c634f76a070ab (patch)
treebf41ae1a585bb585891eb11ff5f0bd16abf2ffb6 /source/blender/imbuf
parent02bbce8b6d7bc1281076e59a0837dd9fadf56d33 (diff)
writing single images from a render (own commit r33104), wasn't checking if the render was cancelled which would crash when writing the image.
also remove paranoid checks for writing TAGA, Other formats - BMP, JPEG, Iris don't do this.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/targa.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/source/blender/imbuf/intern/targa.c b/source/blender/imbuf/intern/targa.c
index 89a69242a46..bc88f2bed0d 100644
--- a/source/blender/imbuf/intern/targa.c
+++ b/source/blender/imbuf/intern/targa.c
@@ -235,19 +235,12 @@ static int dumptarga(struct ImBuf * ibuf, FILE * file)
int imb_savetarga(struct ImBuf * ibuf, char *name, int flags)
{
- char buf[20];
+ char buf[20]= {0};
FILE *fildes;
short ok = 0;
(void)flags; /* unused */
- if (ibuf == 0) return (0);
- if (ibuf->rect == 0) return (0);
-
- memset(buf,0,sizeof(buf));
-
- /* buf[0] = 0; length string */
-
buf[16] = (ibuf->depth + 0x7 ) & ~0x7;
if (ibuf->depth > 8 ){
buf[2] = 10;