|
Karsten Hopp |
8e6384 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
8e6384 |
Subject: Patch 7.3.1052
|
|
Karsten Hopp |
8e6384 |
Fcc: outbox
|
|
Karsten Hopp |
8e6384 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
8e6384 |
Mime-Version: 1.0
|
|
Karsten Hopp |
8e6384 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
8e6384 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
8e6384 |
------------
|
|
Karsten Hopp |
8e6384 |
|
|
Karsten Hopp |
8e6384 |
Patch 7.3.1052
|
|
Karsten Hopp |
8e6384 |
Problem: Python: possible SEGV and negative refcount.
|
|
Karsten Hopp |
8e6384 |
Solution: Python patch 13: Fix IterIter function. (ZyX)
|
|
Karsten Hopp |
8e6384 |
Files: src/if_py_both.h
|
|
Karsten Hopp |
8e6384 |
|
|
Karsten Hopp |
8e6384 |
|
|
Karsten Hopp |
8e6384 |
*** ../vim-7.3.1051/src/if_py_both.h 2013-05-29 22:49:21.000000000 +0200
|
|
Karsten Hopp |
8e6384 |
--- src/if_py_both.h 2013-05-29 22:51:59.000000000 +0200
|
|
Karsten Hopp |
8e6384 |
***************
|
|
Karsten Hopp |
8e6384 |
*** 814,819 ****
|
|
Karsten Hopp |
8e6384 |
--- 814,820 ----
|
|
Karsten Hopp |
8e6384 |
static PyObject *
|
|
Karsten Hopp |
8e6384 |
IterIter(PyObject *self)
|
|
Karsten Hopp |
8e6384 |
{
|
|
Karsten Hopp |
8e6384 |
+ Py_INCREF(self);
|
|
Karsten Hopp |
8e6384 |
return self;
|
|
Karsten Hopp |
8e6384 |
}
|
|
Karsten Hopp |
8e6384 |
|
|
Karsten Hopp |
8e6384 |
*** ../vim-7.3.1051/src/version.c 2013-05-29 22:49:21.000000000 +0200
|
|
Karsten Hopp |
8e6384 |
--- src/version.c 2013-05-29 22:51:45.000000000 +0200
|
|
Karsten Hopp |
8e6384 |
***************
|
|
Karsten Hopp |
8e6384 |
*** 730,731 ****
|
|
Karsten Hopp |
8e6384 |
--- 730,733 ----
|
|
Karsten Hopp |
8e6384 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
8e6384 |
+ /**/
|
|
Karsten Hopp |
8e6384 |
+ 1052,
|
|
Karsten Hopp |
8e6384 |
/**/
|
|
Karsten Hopp |
8e6384 |
|
|
Karsten Hopp |
8e6384 |
--
|
|
Karsten Hopp |
8e6384 |
Q: What is the difference betwee open-source and commercial software?
|
|
Karsten Hopp |
8e6384 |
A: If you have a problem with commercial software you can call a phone
|
|
Karsten Hopp |
8e6384 |
number and they will tell you it might be solved in a future version.
|
|
Karsten Hopp |
8e6384 |
For open-source software there isn't a phone number to call, but you
|
|
Karsten Hopp |
8e6384 |
get the solution within a day.
|
|
Karsten Hopp |
8e6384 |
|
|
Karsten Hopp |
8e6384 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
8e6384 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
8e6384 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
8e6384 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|