8b9a1c
To: vim_dev@googlegroups.com
8b9a1c
Subject: Patch 7.4.111
8b9a1c
Fcc: outbox
8b9a1c
From: Bram Moolenaar <Bram@moolenaar.net>
8b9a1c
Mime-Version: 1.0
8b9a1c
Content-Type: text/plain; charset=UTF-8
8b9a1c
Content-Transfer-Encoding: 8bit
8b9a1c
------------
8b9a1c
8b9a1c
Patch 7.4.111
8b9a1c
Problem:    Memory leak in Python OptionsAssItem. (Ken Takata)
8b9a1c
Solution:   Call Py_XDECREF() where needed. (ZyX)
8b9a1c
Files:	    src/if_py_both.h
8b9a1c
8b9a1c
8b9a1c
*** ../vim-7.4.110/src/if_py_both.h	2013-11-28 17:04:38.000000000 +0100
8b9a1c
--- src/if_py_both.h	2013-12-07 14:23:00.000000000 +0100
8b9a1c
***************
8b9a1c
*** 3005,3015 ****
8b9a1c
      else
8b9a1c
      {
8b9a1c
  	char_u		*val;
8b9a1c
! 	PyObject	*todecref;
8b9a1c
  
8b9a1c
! 	if ((val = StringToChars(valObject, &todecref)))
8b9a1c
  	    ret = set_option_value_for(key, 0, val, opt_flags,
8b9a1c
  				    self->opt_type, self->from);
8b9a1c
  	else
8b9a1c
  	    ret = -1;
8b9a1c
      }
8b9a1c
--- 3005,3018 ----
8b9a1c
      else
8b9a1c
      {
8b9a1c
  	char_u		*val;
8b9a1c
! 	PyObject	*todecref2;
8b9a1c
  
8b9a1c
! 	if ((val = StringToChars(valObject, &todecref2)))
8b9a1c
! 	{
8b9a1c
  	    ret = set_option_value_for(key, 0, val, opt_flags,
8b9a1c
  				    self->opt_type, self->from);
8b9a1c
+ 	    Py_XDECREF(todecref2);
8b9a1c
+ 	}
8b9a1c
  	else
8b9a1c
  	    ret = -1;
8b9a1c
      }
8b9a1c
*** ../vim-7.4.110/src/version.c	2013-11-28 19:27:18.000000000 +0100
8b9a1c
--- src/version.c	2013-12-07 14:24:16.000000000 +0100
8b9a1c
***************
8b9a1c
*** 740,741 ****
8b9a1c
--- 740,743 ----
8b9a1c
  {   /* Add new patch number below this line */
8b9a1c
+ /**/
8b9a1c
+     111,
8b9a1c
  /**/
8b9a1c
8b9a1c
-- 
8b9a1c
How To Keep A Healthy Level Of Insanity:
8b9a1c
12. Sing along at the opera.
8b9a1c
8b9a1c
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
8b9a1c
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
8b9a1c
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
8b9a1c
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///