comparison src/vim9execute.c @ 19538:7df9c8df26f1 v8.2.0326

patch 8.2.0326: compiler warning for using uninitialized variable Commit: https://github.com/vim/vim/commit/d5aec0ced17f8f60761128bff32e54ad2d1d57ef Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 27 21:48:51 2020 +0100 patch 8.2.0326: compiler warning for using uninitialized variable Problem: Compiler warning for using uninitialized variable. (Yegappan Lakshmanan) Solution: Do not jump to failed but return.
author Bram Moolenaar <Bram@vim.org>
date Thu, 27 Feb 2020 22:00:03 +0100
parents b8f778dda1a1
children 8eeec8886c02
comparison
equal deleted inserted replaced
19537:3ef67ebe17cc 19538:7df9c8df26f1
434 #define STACK_TV_VAR(idx) (((typval_T *)ectx.ec_stack.ga_data) + ectx.ec_frame + STACK_FRAME_SIZE + idx) 434 #define STACK_TV_VAR(idx) (((typval_T *)ectx.ec_stack.ga_data) + ectx.ec_frame + STACK_FRAME_SIZE + idx)
435 435
436 vim_memset(&ectx, 0, sizeof(ectx)); 436 vim_memset(&ectx, 0, sizeof(ectx));
437 ga_init2(&ectx.ec_stack, sizeof(typval_T), 500); 437 ga_init2(&ectx.ec_stack, sizeof(typval_T), 500);
438 if (ga_grow(&ectx.ec_stack, 20) == FAIL) 438 if (ga_grow(&ectx.ec_stack, 20) == FAIL)
439 goto failed; 439 return FAIL;
440 ectx.ec_dfunc_idx = ufunc->uf_dfunc_idx; 440 ectx.ec_dfunc_idx = ufunc->uf_dfunc_idx;
441 441
442 ga_init2(&ectx.ec_trystack, sizeof(trycmd_T), 10); 442 ga_init2(&ectx.ec_trystack, sizeof(trycmd_T), 10);
443 443
444 // Put arguments on the stack. 444 // Put arguments on the stack.