From 77ed2d8ca9af8bb646ceb56f47e7a9e21d1eaaee Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 15 Sep 2012 06:29:32 +0000 Subject: code cleanup: remove paranoid NULL checks (these cases would crash earlier of the vars were in fact NULL) --- source/blender/imbuf/intern/targa.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/blender/imbuf/intern/targa.c') diff --git a/source/blender/imbuf/intern/targa.c b/source/blender/imbuf/intern/targa.c index 4df49386ce1..2f7452772ef 100644 --- a/source/blender/imbuf/intern/targa.c +++ b/source/blender/imbuf/intern/targa.c @@ -682,9 +682,11 @@ ImBuf *imb_loadtarga(unsigned char *mem, size_t mem_size, int flags) } } - if (tga.imgdes & 0x20) IMB_flipy(ibuf); + if (tga.imgdes & 0x20) { + IMB_flipy(ibuf); + } - if (ibuf && ibuf->rect) + if (ibuf->rect) IMB_convert_rgba_to_abgr(ibuf); return(ibuf); -- cgit v1.2.3