]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1162 v7.3.1162
authorBram Moolenaar <Bram@vim.org>
Mon, 10 Jun 2013 18:47:36 +0000 (20:47 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 10 Jun 2013 18:47:36 +0000 (20:47 +0200)
Problem:    Python: Memory leaks
Solution:   Add more Py_DECREF(). (ZyX)

src/if_py_both.h
src/if_python.c
src/version.c

index be75cc8433f1094c5f61157beafe7421de3d7ec8..287191a4ea9f575b26c7eac7c4f41f93e9f00f56 100644 (file)
@@ -5354,6 +5354,7 @@ populate_module(PyObject *m, object_adder add_object, attr_getter get_attr)
 {
     int                i;
     PyObject   *other_module;
+    PyObject   *attr;
 
     for (i = 0; i < (int)(sizeof(numeric_constants)
                                           / sizeof(struct numeric_constant));
@@ -5392,14 +5393,26 @@ populate_module(PyObject *m, object_adder add_object, attr_getter get_attr)
     if (!(py_chdir = PyObject_GetAttrString(other_module, "chdir")))
        return -1;
     ADD_OBJECT(m, "_chdir", py_chdir);
-    if (PyObject_SetAttrString(other_module, "chdir", get_attr(m, "chdir")))
+    if (!(attr = get_attr(m, "chdir")))
        return -1;
+    if (PyObject_SetAttrString(other_module, "chdir", attr))
+    {
+       Py_DECREF(attr);
+       return -1;
+    }
+    Py_DECREF(attr);
 
     if ((py_fchdir = PyObject_GetAttrString(other_module, "fchdir")))
     {
        ADD_OBJECT(m, "_fchdir", py_fchdir);
-       if (PyObject_SetAttrString(other_module,"fchdir",get_attr(m,"fchdir")))
+       if (!(attr = get_attr(m, "fchdir")))
            return -1;
+       if (PyObject_SetAttrString(other_module, "fchdir", attr))
+       {
+           Py_DECREF(attr);
+           return -1;
+       }
+       Py_DECREF(attr);
     }
     else
        PyErr_Clear();
index 318b170ee2c52eeac69fe4172fde0b43f560251b..518b4e3f1147269c018fb0839a0186614de22b25 100644 (file)
@@ -210,6 +210,7 @@ struct PyMethodDef { Py_ssize_t a; };
 # define PyMapping_Check dll_PyMapping_Check
 # define PyIter_Next dll_PyIter_Next
 # define PyModule_GetDict dll_PyModule_GetDict
+# define PyModule_AddObject dll_PyModule_AddObject
 # define PyRun_SimpleString dll_PyRun_SimpleString
 # define PyRun_String dll_PyRun_String
 # define PyObject_GetAttrString dll_PyObject_GetAttrString
@@ -344,6 +345,7 @@ static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
 static int (*dll_PyMapping_Check)(PyObject *);
 static PyObject* (*dll_PyIter_Next)(PyObject *);
 static PyObject*(*dll_PyModule_GetDict)(PyObject *);
+static int(*dll_PyModule_AddObject)(PyObject *, const char *, PyObject *);
 static int(*dll_PyRun_SimpleString)(char *);
 static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
 static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *);
@@ -509,6 +511,7 @@ static struct
     {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
     {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
     {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
+    {"PyModule_AddObject", (PYTHON_PROC*)&dll_PyModule_AddObject},
     {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
     {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
     {"PyObject_GetAttrString", (PYTHON_PROC*)&dll_PyObject_GetAttrString},
@@ -1356,20 +1359,10 @@ python_tabpage_free(tabpage_T *tab)
 }
 #endif
 
-    static int
-add_object(PyObject *dict, const char *name, PyObject *object)
-{
-    if (PyDict_SetItemString(dict, (char *) name, object))
-       return -1;
-    Py_DECREF(object);
-    return 0;
-}
-
     static int
 PythonMod_Init(void)
 {
     PyObject *mod;
-    PyObject *dict;
 
     /* The special value is removed from sys.path in Python_Init(). */
     static char *(argv[2]) = {"/must>not&exist/foo", NULL};
@@ -1382,9 +1375,8 @@ PythonMod_Init(void)
 
     mod = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL,
                            PYTHON_API_VERSION);
-    dict = PyModule_GetDict(mod);
 
-    return populate_module(dict, add_object, PyDict_GetItemString);
+    return populate_module(mod, PyModule_AddObject, PyObject_GetAttrString);
 }
 
 /*************************************************************************
index ba277a0a8035b5501c45ed286653a6dac965e7c1..1bdba0201f5a3a28624e4d3bfa66486987a4bae2 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1162,
 /**/
     1161,
 /**/