From 8a367819e61bd8c4364910f9539b1a98057818af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 31 Mar 2015 21:44:13 -0700 Subject: [PATCH] Fixed GCC warning. --- 3rdparty/stb/stb_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/stb/stb_image.c b/3rdparty/stb/stb_image.c index faa463732..9431567ec 100644 --- a/3rdparty/stb/stb_image.c +++ b/3rdparty/stb/stb_image.c @@ -3254,7 +3254,7 @@ static stbi_uc *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int unsigned char *tga_data; unsigned char *tga_palette = NULL; int i, j; - unsigned char raw_data[4]; + unsigned char raw_data[4] = {}; int RLE_count = 0; int RLE_repeating = 0; int read_next_pixel = 1;