Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f0b11d28
Kaydet (Commit)
f0b11d28
authored
Kas 07, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix memory leaks detecting in bug report #478003.
üst
0b663104
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
getaddrinfo.c
Modules/getaddrinfo.c
+6
-4
socketmodule.c
Modules/socketmodule.c
+5
-1
No files found.
Modules/getaddrinfo.c
Dosyayı görüntüle @
f0b11d28
...
...
@@ -571,12 +571,14 @@ get_addr(hostname, af, res, pai, port0)
error
=
EAI_FAIL
;
break
;
}
goto
bad
;
goto
free
;
}
if
((
hp
->
h_name
==
NULL
)
||
(
hp
->
h_name
[
0
]
==
0
)
||
(
hp
->
h_addr_list
[
0
]
==
NULL
))
ERR
(
EAI_FAIL
);
(
hp
->
h_addr_list
[
0
]
==
NULL
))
{
error
=
EAI_FAIL
;
goto
free
;
}
for
(
i
=
0
;
(
ap
=
hp
->
h_addr_list
[
i
])
!=
NULL
;
i
++
)
{
switch
(
af
)
{
...
...
@@ -632,7 +634,7 @@ get_addr(hostname, af, res, pai, port0)
if
(
hp
)
freehostent
(
hp
);
#endif
bad
:
/* bad: */
*
res
=
NULL
;
return
error
;
}
Modules/socketmodule.c
Dosyayı görüntüle @
f0b11d28
...
...
@@ -606,6 +606,7 @@ setipaddr(char* name, struct sockaddr * addr_ret, int af)
return
-
1
;
}
if
(
res
->
ai_next
)
{
freeaddrinfo
(
res
);
PyErr_SetString
(
PySocket_Error
,
"wildcard resolved to multiple address"
);
return
-
1
;
...
...
@@ -2461,7 +2462,8 @@ PySocket_inet_ntoa(PyObject *self, PyObject *args)
static
PyObject
*
PySocket_getaddrinfo
(
PyObject
*
self
,
PyObject
*
args
)
{
struct
addrinfo
hints
,
*
res0
,
*
res
;
struct
addrinfo
hints
,
*
res
;
struct
addrinfo
*
res0
=
NULL
;
PyObject
*
pobj
=
(
PyObject
*
)
NULL
;
char
pbuf
[
30
];
char
*
hptr
,
*
pptr
;
...
...
@@ -2522,6 +2524,8 @@ PySocket_getaddrinfo(PyObject *self, PyObject *args)
err:
Py_XDECREF
(
single
);
Py_XDECREF
(
all
);
if
(
res0
)
freeaddrinfo
(
res0
);
return
(
PyObject
*
)
NULL
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment