mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.652
Problem: Workaround for Python crash isn't perfect. Solution: Change the type of the length argument. (Sean Estabrooks)
This commit is contained in:
@@ -74,18 +74,13 @@ static struct PyMethodDef OutputMethods[] = {
|
|||||||
static PyObject *
|
static PyObject *
|
||||||
OutputWrite(PyObject *self, PyObject *args)
|
OutputWrite(PyObject *self, PyObject *args)
|
||||||
{
|
{
|
||||||
int len;
|
Py_ssize_t len;
|
||||||
char *str = NULL;
|
char *str = NULL;
|
||||||
int error = ((OutputObject *)(self))->error;
|
int error = ((OutputObject *)(self))->error;
|
||||||
|
|
||||||
if (!PyArg_ParseTuple(args, "et#", ENC_OPT, &str, &len))
|
if (!PyArg_ParseTuple(args, "et#", ENC_OPT, &str, &len))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
/* TODO: This works around a gcc optimizer problem and avoids Vim
|
|
||||||
* from crashing. Should find a real solution. */
|
|
||||||
if (str == NULL)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
Py_BEGIN_ALLOW_THREADS
|
Py_BEGIN_ALLOW_THREADS
|
||||||
Python_Lock_Vim();
|
Python_Lock_Vim();
|
||||||
writer((writefn)(error ? emsg : msg), (char_u *)str, len);
|
writer((writefn)(error ? emsg : msg), (char_u *)str, len);
|
||||||
|
@@ -719,6 +719,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
652,
|
||||||
/**/
|
/**/
|
||||||
651,
|
651,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user