summaryrefslogtreecommitdiff
path: root/pcre_compile.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-01-13 17:00:49 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-01-13 17:00:49 +0000
commitdaa78b5ec623fc871934f84d5b1220f454f80d59 (patch)
tree66837420b394cd41a81cc1392b4163fdbfc67dd0 /pcre_compile.c
parent4e5b6802d11d074d6067686470cff6181796f0d4 (diff)
downloadpcre-daa78b5ec623fc871934f84d5b1220f454f80d59.tar.gz
Remove unreachable statement to avoid compiler warning.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1446 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_compile.c')
-rw-r--r--pcre_compile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pcre_compile.c b/pcre_compile.c
index dd065a3..99017c4 100644
--- a/pcre_compile.c
+++ b/pcre_compile.c
@@ -3566,7 +3566,9 @@ for(;;)
if (list[1] == 0) return TRUE;
}
-return FALSE;
+/* Control never reaches here. There used to be a fail-save return FALSE; here,
+but some compilers complain about an unreachable statement. */
+
}