summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/globset.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/globset.c b/src/globset.c
index 124ff246..5ffdfa20 100644
--- a/src/globset.c
+++ b/src/globset.c
@@ -227,21 +227,16 @@ static struct pathndl *search(
pph = &set->globs;
else if (set->exacts)
pph = &set->exacts[hash & set->gmask];
- else
+ else {
+ *pprev = NULL;
return NULL;
+ }
while ((ph = *pph) && strcmp(normal, ph->handler.pattern))
pph = &ph->next;
*pprev = pph;
return ph;
}
-
-
-
-
-
-
-
/**
* Allocates a new set of handlers
*