Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/nanosvg.h
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,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)
Expand Down