Fix a refleak in recvfrom_into

This commit is contained in:
Neal Norwitz 2006-06-08 05:12:45 +00:00
parent ec0d6f83cd
commit f0cab1f6e2

View file

@ -2478,7 +2478,7 @@ sock_recvfrom_into(PySocketSockObject *s, PyObject *args, PyObject* kwds)
/* Return the number of bytes read and the address. Note that we do
not do anything special here in the case that readlen < recvlen. */
return Py_BuildValue("lO", readlen, addr);
return Py_BuildValue("lN", readlen, addr);
}
PyDoc_STRVAR(recvfrom_into_doc,