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.932 < prev    next >
Encoding:
Internet Message Format  |  2013-05-10  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.932
  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.932
  11. Problem:    Compiler warning for uninitialized variable. (Tony Mechelynck)
  12. Solution:   Initialize the variable.
  13. Files:        src/option.c
  14.  
  15.  
  16. *** ../vim-7.3.931/src/option.c    2013-05-06 06:45:42.000000000 +0200
  17. --- src/option.c    2013-05-08 01:32:25.000000000 +0200
  18. ***************
  19. *** 8847,8853 ****
  20.       void    *from;
  21.   {
  22.       int        opt_idx;
  23. !     char_u    *varp;
  24.       struct vimoption *p;
  25.       int        r = 0;
  26.   
  27. --- 8847,8853 ----
  28.       void    *from;
  29.   {
  30.       int        opt_idx;
  31. !     char_u    *varp = NULL;
  32.       struct vimoption *p;
  33.       int        r = 0;
  34.   
  35. *** ../vim-7.3.931/src/version.c    2013-05-07 05:18:15.000000000 +0200
  36. --- src/version.c    2013-05-11 13:44:04.000000000 +0200
  37. ***************
  38. *** 730,731 ****
  39. --- 730,733 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     932,
  43.   /**/
  44.  
  45. -- 
  46. Proverb: A nightingale that forgets the lyrics is a hummingbird.
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.