[vim] - patchlevel 1165

Karsten Hopp karsten at fedoraproject.org
Thu Jun 13 22:34:58 UTC 2013


commit 916c484951e8fd04b7d7130f1d3ed8799f5979d7
Author: Karsten Hopp <karsten at redhat.com>
Date:   Fri Jun 14 00:28:51 2013 +0200

    - patchlevel 1165

 7.3.1165 |   73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 73 insertions(+), 0 deletions(-)
---
diff --git a/7.3.1165 b/7.3.1165
new file mode 100644
index 0000000..b1d0357
--- /dev/null
+++ b/7.3.1165
@@ -0,0 +1,73 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.1165
+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.3.1165
+Problem:    HP-UX compiler can't handle zero size array. (Charles Cooper)
+Solution:   Make the array one item big.
+Files:	    src/regexp.h, src/regexp_nfa.c
+
+
+*** ../vim-7.3.1164/src/regexp.h	2013-06-08 18:19:39.000000000 +0200
+--- src/regexp.h	2013-06-11 10:53:14.000000000 +0200
+***************
+*** 101,107 ****
+  #endif
+      int			nsubexp;	/* number of () */
+      int			nstate;
+!     nfa_state_T		state[0];	/* actually longer.. */
+  } nfa_regprog_T;
+  
+  /*
+--- 101,107 ----
+  #endif
+      int			nsubexp;	/* number of () */
+      int			nstate;
+!     nfa_state_T		state[1];	/* actually longer.. */
+  } nfa_regprog_T;
+  
+  /*
+*** ../vim-7.3.1164/src/regexp_nfa.c	2013-06-10 16:35:11.000000000 +0200
+--- src/regexp_nfa.c	2013-06-11 11:19:17.000000000 +0200
+***************
+*** 6391,6398 ****
+       */
+      post2nfa(postfix, post_ptr, TRUE);
+  
+!     /* Space for compiled regexp */
+!     prog_size = sizeof(nfa_regprog_T) + sizeof(nfa_state_T) * nstate;
+      prog = (nfa_regprog_T *)lalloc(prog_size, TRUE);
+      if (prog == NULL)
+  	goto fail;
+--- 6391,6398 ----
+       */
+      post2nfa(postfix, post_ptr, TRUE);
+  
+!     /* allocate the regprog with space for the compiled regexp */
+!     prog_size = sizeof(nfa_regprog_T) + sizeof(nfa_state_T) * (nstate - 1);
+      prog = (nfa_regprog_T *)lalloc(prog_size, TRUE);
+      if (prog == NULL)
+  	goto fail;
+*** ../vim-7.3.1164/src/version.c	2013-06-11 18:40:06.000000000 +0200
+--- src/version.c	2013-06-11 18:41:47.000000000 +0200
+***************
+*** 730,731 ****
+--- 730,733 ----
+  {   /* Add new patch number below this line */
++ /**/
++     1165,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+145. You e-mail your boss, informing him you'll be late.
+
+ /// 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    ///


More information about the scm-commits mailing list