diff options
| author | Guido van Rossum <guido@python.org> | 1998-09-13 15:52:13 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1998-09-13 15:52:13 +0000 |
| commit | ce11393136c1d49a039aea0a3e53bca204ff5481 (patch) | |
| tree | acabd7af1e609017da059fe01b2a659ee05e51d0 | |
| parent | 065ce5a4b7c2ff6f177fd6b40fac592bef7fc22f (diff) | |
| download | cpython-git-ce11393136c1d49a039aea0a3e53bca204ff5481.tar.gz | |
Remove some unused variables from gethostbyaddr_ex and gethostbyaddr,
discovered by Marc Lemburg.
| -rw-r--r-- | Modules/socketmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 235d39b93c..f9b4fcdd39 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -1402,7 +1402,6 @@ BUILD_FUNC_DEF_2(PySocket_gethostbyname_ex,PyObject *,self, PyObject *,args) char *name; struct hostent *h; struct sockaddr_in addr; - PyObject *addr_list = (PyObject *)NULL; #ifdef HAVE_GETHOSTBYNAME_R struct hostent hp_allocated; char buf[16384]; @@ -1445,9 +1444,6 @@ BUILD_FUNC_DEF_2(PySocket_gethostbyaddr,PyObject *,self, PyObject *, args) struct sockaddr_in addr; char *ip_num; struct hostent *h; - PyObject *rtn_tuple = (PyObject *)NULL; - PyObject *name_list = (PyObject *)NULL; - PyObject *addr_list = (PyObject *)NULL; #ifdef HAVE_GETHOSTBYNAME_R struct hostent hp_allocated; char buf[16384]; |
