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
c7c51147
Kaydet (Commit)
c7c51147
authored
May 29, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix refleak in socketmodule. Replace bogus Py_BuildValue calls.
Fix refleak in exceptions.
üst
964f5978
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
socketmodule.c
Modules/socketmodule.c
+5
-3
exceptions.c
Objects/exceptions.c
+1
-0
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
c7c51147
...
...
@@ -2472,7 +2472,7 @@ sock_recvfrom_buf(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. */
ret
=
Py
Tuple_Pack
(
2
,
PyInt_FromLong
(
readlen
)
,
addr
);
ret
=
Py
_BuildValue
(
"lO"
,
readlen
,
addr
);
finally:
Py_XDECREF
(
addr
);
...
...
@@ -4364,8 +4364,10 @@ init_socket(void)
PyModule_AddIntConstant
(
m
,
"BTPROTO_SCO"
,
BTPROTO_SCO
);
#endif
PyModule_AddIntConstant
(
m
,
"BTPROTO_RFCOMM"
,
BTPROTO_RFCOMM
);
PyModule_AddObject
(
m
,
"BDADDR_ANY"
,
Py_BuildValue
(
"s"
,
"00:00:00:00:00:00"
));
PyModule_AddObject
(
m
,
"BDADDR_LOCAL"
,
Py_BuildValue
(
"s"
,
"00:00:00:FF:FF:FF"
));
PyModule_AddObject
(
m
,
"BDADDR_ANY"
,
PyString_FromString
(
"00:00:00:00:00:00"
));
PyModule_AddObject
(
m
,
"BDADDR_LOCAL"
,
PyString_FromString
(
"00:00:00:FF:FF:FF"
));
#endif
#ifdef HAVE_NETPACKET_PACKET_H
...
...
Objects/exceptions.c
Dosyayı görüntüle @
c7c51147
...
...
@@ -246,6 +246,7 @@ BaseException_set_args(PyBaseExceptionObject *self, PyObject *val)
}
seq
=
PySequence_Tuple
(
val
);
if
(
!
seq
)
return
-
1
;
Py_CLEAR
(
self
->
args
);
self
->
args
=
seq
;
return
0
;
}
...
...
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