From: Bram Moolenaar Date: Wed, 29 May 2013 20:52:32 +0000 (+0200) Subject: updated for version 7.3.1052 X-Git-Tag: v7.3.1052 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bcabe19a2be1a3fe324422e8c28db9e27715cb9;p=thirdparty%2Fvim.git updated for version 7.3.1052 Problem: Python: possible SEGV and negative refcount. Solution: Python patch 13: Fix IterIter function. (ZyX) --- diff --git a/src/if_py_both.h b/src/if_py_both.h index 1cb8f9969a..29d2820765 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -814,6 +814,7 @@ IterNext(IterObject *self) static PyObject * IterIter(PyObject *self) { + Py_INCREF(self); return self; } diff --git a/src/version.c b/src/version.c index 70187394f3..9209f60a18 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1052, /**/ 1051, /**/