From 33e92afef721cdf2f0b7d4032f666b45da201e28 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Tue, 22 May 2012 11:24:22 -0700 Subject: [PATCH] Fix length of pattern. After skipping * with "token++", the length should decrease by 1 as well. Change-Id: I132eb7d12bb756f2f713c607e92741ca834aef81 --- AaptAssets.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/AaptAssets.cpp b/AaptAssets.cpp index 73705ae..f2fa3f5 100644 --- a/AaptAssets.cpp +++ b/AaptAssets.cpp @@ -122,6 +122,7 @@ static bool isHidden(const char *root, const char *path) if (token[0] == '*') { // Match *suffix token++; + n--; if (n <= plen) { ignore = strncasecmp(token, path + plen - n, n) == 0; } -- 2.45.2