Fix memory leak

This commit is contained in:
Neal Norwitz 2007-08-12 07:11:25 +00:00
parent 646049ec30
commit 447e7c3981
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ PyFloat_FromString(PyObject *v)
PyUnicode_GET_SIZE(v),
s_buffer,
NULL))
return NULL;
goto error;
s = s_buffer;
len = strlen(s);
}