comparison src/eval.c @ 6588:1ffe91b5e514 v7.4.620

updated for version 7.4.620 Problem: Compiler warning for unitinialized variable. (Tony Mechelynck) Solution: Initialize "did_free". (Ben Fritz)
author Bram Moolenaar <bram@vim.org>
date Wed, 04 Feb 2015 23:06:45 +0100
parents 7092ec5d5ef1
children 03688be95994
comparison
equal deleted inserted replaced
6587:9eafe83d3889 6588:1ffe91b5e514
6813 int abort = FALSE; 6813 int abort = FALSE;
6814 buf_T *buf; 6814 buf_T *buf;
6815 win_T *wp; 6815 win_T *wp;
6816 int i; 6816 int i;
6817 funccall_T *fc, **pfc; 6817 funccall_T *fc, **pfc;
6818 int did_free; 6818 int did_free = FALSE;
6819 int did_free_funccal = FALSE; 6819 int did_free_funccal = FALSE;
6820 #ifdef FEAT_WINDOWS 6820 #ifdef FEAT_WINDOWS
6821 tabpage_T *tp; 6821 tabpage_T *tp;
6822 #endif 6822 #endif
6823 6823