From 6d8c3184fadb1834223236b13471797089e4a004 Mon Sep 17 00:00:00 2001 From: Adrian Negreanu Date: Thu, 27 Feb 2014 20:03:06 +0200 Subject: util/patternMatch: break when pattern is found Signed-off-by: Adrian Negreanu --- src/util.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 136ee80..55b5d1e 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -7445,7 +7445,7 @@ bool patternMatch(const QFileInfo &fi,const QStrList *patList) QCString pattern; for (it.toFirst();(pattern=it.current());++it) { - if (!pattern.isEmpty() && !found) + if (!pattern.isEmpty()) { int i=pattern.find('='); if (i!=-1) pattern=pattern.left(i); // strip of the extension specific filter name @@ -7458,6 +7458,7 @@ bool patternMatch(const QFileInfo &fi,const QStrList *patList) found = found || re.match(fi.fileName().data())!=-1 || re.match(fi.filePath().data())!=-1 || re.match(fi.absFilePath().data())!=-1; + if (found) break; //printf("Matching `%s' against pattern `%s' found=%d\n", // fi->fileName().data(),pattern.data(),found); } -- cgit v0.12