From: Michihiro NAKAJIMA Date: Wed, 6 Jan 2010 12:16:37 +0000 (-0500) Subject: Remove unreachable code. X-Git-Tag: v2.8.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=308fe848f77eec87f7a0485152db88bc6ec1fb1d;p=thirdparty%2Flibarchive.git Remove unreachable code. SVN-Revision: 1809 --- 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,