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:
authorKent Mein <mein@cs.umn.edu>2005-01-10 19:22:40 +0300
committerKent Mein <mein@cs.umn.edu>2005-01-10 19:22:40 +0300
commit3c592ec3ad40cd3809890f3532875a609c635fb3 (patch)
treeaef5e4a5a9779eda429b0ca4c3d21dc402ead55c /source/blender/imbuf/intern/targa.c
parentd1d8950eac2e0cbdbbf97e5b893f72a4fdca3b12 (diff)
This is for bug # 2068
I standarized the returns on a failed opening of the output file for the above image formats. I also cleaned up a couple of warnings. Kent
Diffstat (limited to 'source/blender/imbuf/intern/targa.c')
-rw-r--r--source/blender/imbuf/intern/targa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/targa.c b/source/blender/imbuf/intern/targa.c
index 6b8427339d2..06e75673285 100644
--- a/source/blender/imbuf/intern/targa.c
+++ b/source/blender/imbuf/intern/targa.c
@@ -291,7 +291,7 @@ short imb_savetarga(struct ImBuf * ibuf, char *name, int flags)
buf[17] |= 0x08;
}
fildes = fopen(name,"wb");
-
+ if (!fildes) return 0;
if (fwrite(buf, 1, 18,fildes) != 18) return (0);