diff --git a/src/nanosvg.h b/src/nanosvg.h index 2e554231..93454160 100644 --- a/src/nanosvg.h +++ b/src/nanosvg.h @@ -1686,7 +1686,7 @@ static int nsvg__parseRotate(float* xform, const char* str) static void nsvg__parseTransform(float* xform, const char* str) { - float t[6]; + float t[6] = { 0 }; int len; nsvg__xformIdentity(xform); while (*str)