commit | 934b13619318c5d0721797266b9a9060546e07a5 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Feb 04 23:06:45 2015 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Feb 04 23:06:45 2015 +0100 |
tree | 58ff6f9abf20249baf3dd45df0bebe6dcc3cca17 | |
parent | b84634de30884f4f6a17b5872f4553ec746797c5 [diff] [blame] |
updated for version 7.4.620 Problem: Compiler warning for unitinialized variable. (Tony Mechelynck) Solution: Initialize "did_free". (Ben Fritz)
diff --git a/src/eval.c b/src/eval.c index b8288c2..d468403 100644 --- a/src/eval.c +++ b/src/eval.c
@@ -6815,7 +6815,7 @@ win_T *wp; int i; funccall_T *fc, **pfc; - int did_free; + int did_free = FALSE; int did_free_funccal = FALSE; #ifdef FEAT_WINDOWS tabpage_T *tp;