Skip to content

Commit ab7e8e4

Browse files
committed
.
1 parent f3a3afe commit ab7e8e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CImg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29311,7 +29311,7 @@ namespace cimg_library {
2931129311
ptrd = (unsigned int)mp.opcode[1] + 1,
2931229312
siz = (unsigned int)mp.opcode[2];
2931329313
mp_func op = (mp_func)mp.opcode[3];
29314-
ulongT l_data[3];
29314+
ulongT l_data[3] = { 0 };
2931529315
CImg<ulongT> l_opcode(l_data,1,3,1,1,true);
2931629316
l_opcode[2] = mp.opcode[4]; // Scalar argument
2931729317
l_opcode.swap(mp.opcode);
@@ -29327,7 +29327,7 @@ namespace cimg_library {
2932729327
siz = (unsigned int)mp.opcode[2],
2932829328
ptrs = (unsigned int)mp.opcode[4] + 1;
2932929329
mp_func op = (mp_func)mp.opcode[3];
29330-
ulongT l_data[4];
29330+
ulongT l_data[4] = { 0 };
2933129331
CImg<ulongT> l_opcode(l_data,1,4,1,1,true);
2933229332
l_opcode.swap(mp.opcode);
2933329333
ulongT &target = mp.opcode[1], &argument = mp.opcode[2];

0 commit comments

Comments
 (0)