]> git.eshelyaron.com Git - emacs.git/commitdiff
Release regexp before signalling overflow error
authorMattias Engdegård <mattiase@acm.org>
Tue, 19 Mar 2019 12:47:13 +0000 (13:47 +0100)
committerMattias Engdegård <mattiase@acm.org>
Sat, 30 Mar 2019 10:54:10 +0000 (11:54 +0100)
* src/search.c (looking_at_1, search_buffer_re): Unfreeze the regexp
buffer before signalling a matcher overflow, since the error
processing may require quite some regexp use as well (Bug#34910).

src/search.c

index 07ff0e47643b99c7238a073f9adf01d4ab575a7b..a450e920b030fe6060f0b5e20d450074b5e5131e 100644 (file)
@@ -319,7 +319,10 @@ looking_at_1 (Lisp_Object string, bool posix)
                  ZV_BYTE - BEGV_BYTE);
 
   if (i == -2)
-    matcher_overflow ();
+    {
+      unbind_to (count, Qnil);
+      matcher_overflow ();
+    }
 
   val = (i >= 0 ? Qt : Qnil);
   if (preserve_match_data && i >= 0)
@@ -1198,6 +1201,7 @@ search_buffer_re (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
                          pos_byte - BEGV_BYTE);
       if (val == -2)
         {
+          unbind_to (count, Qnil);
           matcher_overflow ();
         }
       if (val >= 0)
@@ -1243,6 +1247,7 @@ search_buffer_re (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
                          lim_byte - BEGV_BYTE);
       if (val == -2)
         {
+          unbind_to (count, Qnil);
           matcher_overflow ();
         }
       if (val >= 0)