From 308fe848f77eec87f7a0485152db88bc6ec1fb1d Mon Sep 17 00:00:00 2001 From: Michihiro NAKAJIMA Date: Wed, 6 Jan 2010 07:16:37 -0500 Subject: [PATCH] Remove unreachable code. SVN-Revision: 1809 --- libarchive_fe/pathmatch.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libarchive_fe/pathmatch.c b/libarchive_fe/pathmatch.c index 80a0b6aa0..85074bdb3 100644 --- a/libarchive_fe/pathmatch.c +++ b/libarchive_fe/pathmatch.c @@ -131,7 +131,6 @@ pm(const char *p, const char *s, int flags) s = pm_slashskip(s); } return (*s == '\0'); - break; case '?': /* ? always succeds, unless we hit end of 's' */ if (*s == '\0') @@ -150,7 +149,6 @@ pm(const char *p, const char *s, int flags) ++s; } return (0); - break; case '[': /* * Find the end of the [...] character class, -- 2.47.3