Browse Source

stb_image: Pacify some MSVC warnings.

Convince the compiler's dataflow analysis that yes, we are not
reading uninitialized values of coutput.

Fixes issue #608.
Fabian Giesen 6 năm trước cách đây
mục cha
commit
d6a598186c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      stb_image.h

+ 1 - 1
stb_image.h

@@ -3659,7 +3659,7 @@ static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp
       int k;
       unsigned int i,j;
       stbi_uc *output;
-      stbi_uc *coutput[4];
+      stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL };
 
       stbi__resample res_comp[4];