diff options
-rw-r--r-- | source/fitz/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/path.c b/source/fitz/path.c index 815a07b0..f99cb650 100644 --- a/source/fitz/path.c +++ b/source/fitz/path.c @@ -584,8 +584,8 @@ void fz_walk_path(fz_context *ctx, const fz_path *path, const fz_path_walker *pr { int i, k, cmd_len; float x, y, sx, sy; - uint8_t *cmds = path->cmds; - float *coords = path->coords; + uint8_t *cmds; + float *coords; switch (path->packed) { |