karsten pushed to vim (master). "- patchlevel 696"

notifications at fedoraproject.org notifications at fedoraproject.org
Wed Jun 10 08:18:57 UTC 2015


From 3e20132a9a33a133f75adec1b1edd5627b4aefdc Mon Sep 17 00:00:00 2001
From: Karsten Hopp <karsten at redhat.com>
Date: Mon, 13 Apr 2015 18:00:04 +0200
Subject: - patchlevel 696


diff --git a/7.4.696 b/7.4.696
new file mode 100644
index 0000000..2afc4c5
--- /dev/null
+++ b/7.4.696
@@ -0,0 +1,63 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.4.696
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.4.696
+Problem:    Not freeing memory when encountering an error.
+Solution:   Free the stack before returning. (Eliseo Martínez)
+Files:      src/regexp_nfa.c
+
+
+*** ../vim-7.4.695/src/regexp_nfa.c	2015-03-05 17:16:02.620687666 +0100
+--- src/regexp_nfa.c	2015-04-13 15:18:36.078662211 +0200
+***************
+*** 3156,3161 ****
+--- 3156,3162 ----
+  		    if (stackp < stack)			\
+  		    {					\
+  			st_error(postfix, end, p);	\
++ 			vim_free(stack);		\
+  			return NULL;			\
+  		    }
+  
+***************
+*** 3632,3641 ****
+--- 3633,3648 ----
+  
+      e = POP();
+      if (stackp != stack)
++     {
++ 	vim_free(stack);
+  	EMSG_RET_NULL(_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack"));
++     }
+  
+      if (istate >= nstate)
++     {
++ 	vim_free(stack);
+  	EMSG_RET_NULL(_("E876: (NFA regexp) Not enough space to store the whole NFA "));
++     }
+  
+      matchstate = &state_ptr[istate++]; /* the match state */
+      matchstate->c = NFA_MATCH;
+*** ../vim-7.4.695/src/version.c	2015-04-13 14:45:10.696707013 +0200
+--- src/version.c	2015-04-13 15:26:18.109607819 +0200
+***************
+*** 743,744 ****
+--- 743,746 ----
+  {   /* Add new patch number below this line */
++ /**/
++     696,
+  /**/
+
+-- 
+This message contains 78% recycled characters.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/vim.git/commit/?h=master&id=3e20132a9a33a133f75adec1b1edd5627b4aefdc


More information about the scm-commits mailing list