commit | 75be2339d877bbd38df91c0181e1e0e388852df6 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Apr 14 23:10:40 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Apr 14 23:10:40 2016 +0200 |
tree | 6344027b0e227c0183fbd9218ed99c8518d969eb | |
parent | 5d18e0eca59ffbba22c7f7c91c9f99d672095728 [diff] [blame] |
patch 7.4.1743 Problem: Clang warns for uninitialzed variable. (Michael Jarvis) Solution: Initialize it.
diff --git a/src/if_py_both.h b/src/if_py_both.h index ceedd4c..0b701ae 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h
@@ -6070,7 +6070,7 @@ ConvertFromPySequence(PyObject *obj, typval_T *tv) { PyObject *lookup_dict; - int ret; + int ret = 0; if (!(lookup_dict = PyDict_New())) return -1;