|
|
22c937 |
To: vim_dev@googlegroups.com
|
|
|
22c937 |
Subject: Patch 7.4.620
|
|
|
22c937 |
Fcc: outbox
|
|
|
22c937 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
22c937 |
Mime-Version: 1.0
|
|
|
22c937 |
Content-Type: text/plain; charset=UTF-8
|
|
|
22c937 |
Content-Transfer-Encoding: 8bit
|
|
|
22c937 |
------------
|
|
|
22c937 |
|
|
|
22c937 |
Patch 7.4.620
|
|
|
22c937 |
Problem: Compiler warning for unitinialized variable. (Tony Mechelynck)
|
|
|
22c937 |
Solution: Initialize "did_free". (Ben Fritz)
|
|
|
22c937 |
Files: src/eval.c
|
|
|
22c937 |
|
|
|
22c937 |
|
|
|
22c937 |
*** ../vim-7.4.619/src/eval.c 2015-02-03 17:10:02.149172883 +0100
|
|
|
22c937 |
--- src/eval.c 2015-02-04 22:28:33.244066584 +0100
|
|
|
22c937 |
***************
|
|
|
22c937 |
*** 6815,6821 ****
|
|
|
22c937 |
win_T *wp;
|
|
|
22c937 |
int i;
|
|
|
22c937 |
funccall_T *fc, **pfc;
|
|
|
22c937 |
! int did_free;
|
|
|
22c937 |
int did_free_funccal = FALSE;
|
|
|
22c937 |
#ifdef FEAT_WINDOWS
|
|
|
22c937 |
tabpage_T *tp;
|
|
|
22c937 |
--- 6815,6821 ----
|
|
|
22c937 |
win_T *wp;
|
|
|
22c937 |
int i;
|
|
|
22c937 |
funccall_T *fc, **pfc;
|
|
|
22c937 |
! int did_free = FALSE;
|
|
|
22c937 |
int did_free_funccal = FALSE;
|
|
|
22c937 |
#ifdef FEAT_WINDOWS
|
|
|
22c937 |
tabpage_T *tp;
|
|
|
22c937 |
*** ../vim-7.4.619/src/version.c 2015-02-04 22:02:33.184877183 +0100
|
|
|
22c937 |
--- src/version.c 2015-02-04 23:06:08.637946730 +0100
|
|
|
22c937 |
***************
|
|
|
22c937 |
*** 743,744 ****
|
|
|
22c937 |
--- 743,746 ----
|
|
|
22c937 |
{ /* Add new patch number below this line */
|
|
|
22c937 |
+ /**/
|
|
|
22c937 |
+ 620,
|
|
|
22c937 |
/**/
|
|
|
22c937 |
|
|
|
22c937 |
--
|
|
|
22c937 |
hundred-and-one symptoms of being an internet addict:
|
|
|
22c937 |
177. You log off of your system because it's time to go to work.
|
|
|
22c937 |
|
|
|
22c937 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
22c937 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
22c937 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
22c937 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|