
Aug. 12, 2001
4:30 a.m.
In PySocket_getaddrinfo, would it make sense to increase the allocation of pbuf from 10 characters to, say, 30 characters, in case
sprintf(pbuf, "%ld", PyInt_AsLong(pobj));
gets run on a 64-bit machine?
It isn't strictly necessary, since the port number should never be that large; it doesn't hurt to increase the size, either, so I did that. Thanks, Martin