Merge pull request #688 from pyway/patch-1

fix memory leak in path.c
This commit is contained in:
Sven Bergström
2019-07-01 07:40:14 -07:00
committed by GitHub

View File

@ -299,6 +299,8 @@ void pathNormalize(Path* path)
path->capacity = result->capacity;
path->chars = result->chars;
path->length = result->length;
free(result);
}
char* pathToString(Path* path)