From 1aceedd9968ff6476bf60de6d1137a4754476954 Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Mon, 12 Sep 2016 16:13:34 -0500 Subject: cygwin-pcre 8.39 --- ...t-loop-for-global-matching-with-an-ovecto.patch | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 pcre-8.38-Fix-pcretest-loop-for-global-matching-with-an-ovecto.patch (limited to 'pcre-8.38-Fix-pcretest-loop-for-global-matching-with-an-ovecto.patch') diff --git a/pcre-8.38-Fix-pcretest-loop-for-global-matching-with-an-ovecto.patch b/pcre-8.38-Fix-pcretest-loop-for-global-matching-with-an-ovecto.patch deleted file mode 100644 index 6cdb8c6..0000000 --- a/pcre-8.38-Fix-pcretest-loop-for-global-matching-with-an-ovecto.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 0fc2edb79b3815c6511fd75c36a57893e4acaee6 Mon Sep 17 00:00:00 2001 -From: ph10 -Date: Sat, 27 Feb 2016 17:55:24 +0000 -Subject: [PATCH] Fix pcretest loop for global matching with an ovector size - less than 2. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1637 2f5784b3-3f2a-0410-8824-cb99058d5e15 - -Petr Písař: Ported to 8.38. - -diff --git a/pcretest.c b/pcretest.c -index 63869fd..78ef517 100644 ---- a/pcretest.c -+++ b/pcretest.c -@@ -5617,6 +5617,12 @@ while (!done) - break; - } - -+ if (use_size_offsets < 2) -+ { -+ fprintf(outfile, "Cannot do global matching with an ovector size < 2\n"); -+ break; -+ } -+ - /* If we have matched an empty string, first check to see if we are at - the end of the subject. If so, the /g loop is over. Otherwise, mimic what - Perl's /g options does. This turns out to be rather cunning. First we set --- -2.5.0 - -- cgit