diff --git a/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c index 6018d6919732..4bb1eb3aa03f 100644 --- a/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c @@ -115,9 +115,9 @@ float rand_uniformf( float a, float b ) { */ static double benchmark( int iterations, int len ) { double elapsed; - uint8_t m[ len ]; - float x[ len ]; - float y[ len ]; + uint8_t m[ len ] = { 0 }; + float x[ len ] = { 0 }; + float y[ len ] = { 0 }; double t; int i;