From 922bef72c83a0b223f6483faf56a2e12f6814030 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 5 May 2017 11:22:40 -0700 Subject: [PATCH] Fix array bounds error found by -fsanitize=address --- decode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decode.cpp b/decode.cpp index c55288e..ecc7232 100644 --- a/decode.cpp +++ b/decode.cpp @@ -263,7 +263,7 @@ void handle(std::string message, int z, unsigned x, unsigned y, int describe, st } } - if (i >= ops.size() || ops[i + 1].op == VT_MOVETO) { + if (i + 1 >= ops.size() || ops[i + 1].op == VT_MOVETO) { if (ops[i].op != VT_CLOSEPATH) { fprintf(stderr, "Ring does not end with closepath (ends with %d)\n", ops[i].op); if (!force) {