diff options
author | ph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069> | 2020-01-24 15:17:15 +0000 |
---|---|---|
committer | ph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069> | 2020-01-24 15:17:15 +0000 |
commit | d2b7e6ba6887210c73454c798058b446ce5d47f6 (patch) | |
tree | eb9a50a7f68da432a67d6b2c5817468bcf5877ba /src | |
parent | 06909689f0c6daf8ab8dad310638c8eb24bcfcdc (diff) | |
download | pcre2-d2b7e6ba6887210c73454c798058b446ce5d47f6.tar.gz |
Avoid compiler "fall through" warning.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1209 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src')
-rw-r--r-- | src/pcre2_jit_compile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pcre2_jit_compile.c b/src/pcre2_jit_compile.c index e0b9fc7..07bdb24 100644 --- a/src/pcre2_jit_compile.c +++ b/src/pcre2_jit_compile.c @@ -1166,6 +1166,7 @@ while (cc < ccend) case OP_PRUNE_ARG: if (cc < assert_na_end) return FALSE; + /* Fall through */ case OP_MARK: if (common->mark_ptr == 0) { |