home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.1072 < prev    next >
Encoding:
Internet Message Format  |  2013-05-29  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.1072
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.1072
  11. Problem:    Compiler warning for unitialized variable.
  12. Solution:   Initialize it.
  13. Files:        src/regexp_nfa.c
  14.  
  15.  
  16. *** ../vim-7.3.1071/src/regexp_nfa.c    2013-05-30 17:05:34.000000000 +0200
  17. --- src/regexp_nfa.c    2013-05-30 17:37:48.000000000 +0200
  18. ***************
  19. *** 2873,2878 ****
  20. --- 2873,2879 ----
  21.   
  22.           /* Set the position (with "off") in the subexpression.  Save and
  23.            * restore it when it was in use.  Otherwise fill any gap. */
  24. +         save_ptr = NULL;
  25.           if (REG_MULTI)
  26.           {
  27.           if (subidx < sub->in_use)
  28. *** ../vim-7.3.1071/src/version.c    2013-05-30 17:05:34.000000000 +0200
  29. --- src/version.c    2013-05-30 17:48:42.000000000 +0200
  30. ***************
  31. *** 730,731 ****
  32. --- 730,733 ----
  33.   {   /* Add new patch number below this line */
  34. + /**/
  35. +     1072,
  36.   /**/
  37.  
  38. -- 
  39. How To Keep A Healthy Level Of Insanity:
  40. 16. Have your coworkers address you by your wrestling name, Rock Hard Kim.
  41.  
  42.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  43. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  44. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  45.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  46.