@@ -0,0 +1,52 @@
|
|
1
|
+
To: vim_dev@googlegroups.com
|
2
|
+
Subject: Patch 7.4.620
|
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.4.620
|
11
|
+
Problem: Compiler warning for unitinialized variable. (Tony Mechelynck)
|
12
|
+
Solution: Initialize "did_free". (Ben Fritz)
|
13
|
+
Files: src/eval.c
|
14
|
+
|
15
|
+
|
16
|
+
*** ../vim-7.4.619/src/eval.c 2015-02-03 17:10:02.149172883 +0100
|
17
|
+
--- src/eval.c 2015-02-04 22:28:33.244066584 +0100
|
18
|
+
***************
|
19
|
+
*** 6815,6821 ****
|
20
|
+
win_T *wp;
|
21
|
+
int i;
|
22
|
+
funccall_T *fc, **pfc;
|
23
|
+
! int did_free;
|
24
|
+
int did_free_funccal = FALSE;
|
25
|
+
#ifdef FEAT_WINDOWS
|
26
|
+
tabpage_T *tp;
|
27
|
+
--- 6815,6821 ----
|
28
|
+
win_T *wp;
|
29
|
+
int i;
|
30
|
+
funccall_T *fc, **pfc;
|
31
|
+
! int did_free = FALSE;
|
32
|
+
int did_free_funccal = FALSE;
|
33
|
+
#ifdef FEAT_WINDOWS
|
34
|
+
tabpage_T *tp;
|
35
|
+
*** ../vim-7.4.619/src/version.c 2015-02-04 22:02:33.184877183 +0100
|
36
|
+
--- src/version.c 2015-02-04 23:06:08.637946730 +0100
|
37
|
+
***************
|
38
|
+
*** 743,744 ****
|
39
|
+
--- 743,746 ----
|
40
|
+
{ /* Add new patch number below this line */
|
41
|
+
+ /**/
|
42
|
+
+ 620,
|
43
|
+
/**/
|
44
|
+
|
45
|
+
--
|
46
|
+
hundred-and-one symptoms of being an internet addict:
|
47
|
+
177. You log off of your system because it's time to go to work.
|
48
|
+
|
49
|
+
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
50
|
+
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
51
|
+
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
52
|
+
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|