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>2011-03-19 08:06:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-19 08:06:06 +0300
commite9005b985ef283d952aaaa7486d42ad6a48fb117 (patch)
tree917221e91452b5075f710b9e5639d8d2b4b539ed /source/blender/imbuf
parent3b8d4aa25f23f1c4c1d9a42e6c876333c4f2c6d2 (diff)
remove some redundant vars, assignments & checks.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/cineon/cineonlib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/imbuf/intern/cineon/cineonlib.c b/source/blender/imbuf/intern/cineon/cineonlib.c
index 78da556210b..fdcd3491af1 100644
--- a/source/blender/imbuf/intern/cineon/cineonlib.c
+++ b/source/blender/imbuf/intern/cineon/cineonlib.c
@@ -606,7 +606,6 @@ CineonFile*
cineonOpenFromMem(unsigned char *mem, unsigned int size) {
CineonGenericHeader header;
- int i;
CineonFile* cineon = (CineonFile* )malloc(sizeof(CineonFile));
if (cineon == 0) {
@@ -670,8 +669,6 @@ cineonOpenFromMem(unsigned char *mem, unsigned int size) {
return 0;
}
cineon->pixelBufferUsed = 0;
-
- i = cineon->imageOffset;
if (logimage_fseek(cineon, cineon->imageOffset, SEEK_SET) != 0) {
if (verbose) d_printf("Couldn't seek to image data at %d\n", cineon->imageOffset);