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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-01-17 23:11:59 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-01-18 02:54:07 +0300
commite0f2c7aff484c7448903a1466829675494ebae6c (patch)
tree4d238fa9baacb37cf243e4a45984ef42dbf63549 /source/blender/imbuf/intern/iris.c
parent235f578a0d21191cf4914652e8cfc5608fc1e218 (diff)
Fix Linux/GCC compiler warning in recent fixes.
Diffstat (limited to 'source/blender/imbuf/intern/iris.c')
-rw-r--r--source/blender/imbuf/intern/iris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/iris.c b/source/blender/imbuf/intern/iris.c
index c62829cb8fa..55727ed6697 100644
--- a/source/blender/imbuf/intern/iris.c
+++ b/source/blender/imbuf/intern/iris.c
@@ -261,7 +261,7 @@ struct ImBuf *imb_loadiris(const uchar *mem, size_t size, int flags, char colors
MFileOffset _inf_data = {mem, 0}, *inf = &_inf_data;
IMAGE image;
int bpp, rle, cur, badorder;
- ImBuf *ibuf;
+ ImBuf *ibuf = NULL;
uchar dirty_flag = 0;
if (size < HEADER_SIZE) {