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.1 / 7.1.115 < prev    next >
Encoding:
Internet Message Format  |  2007-11-19  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 7.1.115
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.1.115 (after 7.1.105)
  11. Problem:    Compiler warning for uninitialized variable. (Tony Mechelynck)
  12. Solution:   Init variable to NULL.
  13. Files:        src/eval.c
  14.  
  15.  
  16. *** ../vim-7.1.114/src/eval.c    Mon Sep 17 21:55:02 2007
  17. --- src/eval.c    Sun Sep 16 19:24:49 2007
  18. ***************
  19. *** 6704,6710 ****
  20.       dict_T    *d = NULL;
  21.       typval_T    tvkey;
  22.       typval_T    tv;
  23. !     char_u    *key;
  24.       dictitem_T    *item;
  25.       char_u    *start = skipwhite(*arg + 1);
  26.       char_u    buf[NUMBUFLEN];
  27. --- 6705,6711 ----
  28.       dict_T    *d = NULL;
  29.       typval_T    tvkey;
  30.       typval_T    tv;
  31. !     char_u    *key = NULL;
  32.       dictitem_T    *item;
  33.       char_u    *start = skipwhite(*arg + 1);
  34.       char_u    buf[NUMBUFLEN];
  35. *** ../vim-7.1.114/src/version.c    Mon Sep 17 21:55:02 2007
  36. --- src/version.c    Mon Sep 17 22:18:42 2007
  37. ***************
  38. *** 668,669 ****
  39. --- 668,671 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     115,
  43.   /**/
  44.  
  45. -- 
  46. Proofread carefully to see if you any words out.
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.