To: vim_dev@googlegroups.com Subject: Patch 7.4.1743 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 7.4.1743 Problem: Clang warns for uninitialzed variable. (Michael Jarvis) Solution: Initialize it. Files: src/if_py_both.h *** ../vim-7.4.1742/src/if_py_both.h 2016-04-14 17:40:52.668464428 +0200 --- src/if_py_both.h 2016-04-14 23:06:20.007064066 +0200 *************** *** 6070,6076 **** ConvertFromPySequence(PyObject *obj, typval_T *tv) { PyObject *lookup_dict; ! int ret; if (!(lookup_dict = PyDict_New())) return -1; --- 6070,6076 ---- ConvertFromPySequence(PyObject *obj, typval_T *tv) { PyObject *lookup_dict; ! int ret = 0; if (!(lookup_dict = PyDict_New())) return -1; *** ../vim-7.4.1742/src/version.c 2016-04-14 22:54:20.818618214 +0200 --- src/version.c 2016-04-14 23:08:16.433842797 +0200 *************** *** 750,751 **** --- 750,753 ---- { /* Add new patch number below this line */ + /**/ + 1743, /**/ -- Facepalm statement #7: "Last week I almost got pregnant!" /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///