|
Karsten Hopp |
57d3a9 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
57d3a9 |
Subject: Patch 7.3.1124
|
|
Karsten Hopp |
57d3a9 |
Fcc: outbox
|
|
Karsten Hopp |
57d3a9 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
57d3a9 |
Mime-Version: 1.0
|
|
Karsten Hopp |
57d3a9 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
57d3a9 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
57d3a9 |
------------
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
Patch 7.3.1124
|
|
Karsten Hopp |
57d3a9 |
Problem: Python: Crash on MS-Windows when os.fchdir() is not available.
|
|
Karsten Hopp |
57d3a9 |
Solution: Check for _chdir to be NULL. (Ken Takata)
|
|
Karsten Hopp |
57d3a9 |
Files: src/if_py_both.h
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
*** ../vim-7.3.1123/src/if_py_both.h 2013-06-03 20:04:43.000000000 +0200
|
|
Karsten Hopp |
57d3a9 |
--- src/if_py_both.h 2013-06-05 20:33:48.000000000 +0200
|
|
Karsten Hopp |
57d3a9 |
***************
|
|
Karsten Hopp |
57d3a9 |
*** 718,723 ****
|
|
Karsten Hopp |
57d3a9 |
--- 718,725 ----
|
|
Karsten Hopp |
57d3a9 |
PyObject *todecref;
|
|
Karsten Hopp |
57d3a9 |
char_u *new_dir;
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
+ if (_chdir == NULL)
|
|
Karsten Hopp |
57d3a9 |
+ return NULL;
|
|
Karsten Hopp |
57d3a9 |
if (!(r = PyObject_Call(_chdir, args, kwargs)))
|
|
Karsten Hopp |
57d3a9 |
return NULL;
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
*** ../vim-7.3.1123/src/version.c 2013-06-05 19:35:31.000000000 +0200
|
|
Karsten Hopp |
57d3a9 |
--- src/version.c 2013-06-05 20:09:04.000000000 +0200
|
|
Karsten Hopp |
57d3a9 |
***************
|
|
Karsten Hopp |
57d3a9 |
*** 730,731 ****
|
|
Karsten Hopp |
57d3a9 |
--- 730,733 ----
|
|
Karsten Hopp |
57d3a9 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
57d3a9 |
+ /**/
|
|
Karsten Hopp |
57d3a9 |
+ 1124,
|
|
Karsten Hopp |
57d3a9 |
/**/
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
--
|
|
Karsten Hopp |
57d3a9 |
From "know your smileys":
|
|
Karsten Hopp |
57d3a9 |
=):-) Uncle Sam
|
|
Karsten Hopp |
57d3a9 |
|
|
Karsten Hopp |
57d3a9 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
57d3a9 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
57d3a9 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
57d3a9 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|