1
0
forked from aniani/vim

updated for version 7.3.1009

Problem:    Compiler warning for ambiguous else.
Solution:   Add curly braces.
This commit is contained in:
Bram Moolenaar
2013-05-24 18:58:43 +02:00
parent 02e26d9807
commit 425154d888
2 changed files with 4 additions and 0 deletions

View File

@@ -2163,7 +2163,9 @@ WinListDestructor(WinListObject *self)
TabPageObject *tabObject = self->tabObject;
if (tabObject)
{
Py_DECREF((PyObject *)(tabObject));
}
DESTRUCTOR_FINISH(self);
}