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
305e1a74
Kaydet (Commit)
305e1a74
authored
Ara 08, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16628: Fix a memory leak in ctypes.resize().
üst
ed636a84
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
NEWS
Misc/NEWS
+2
-0
_ctypes.c
Modules/_ctypes/_ctypes.c
+1
-1
callproc.c
Modules/_ctypes/callproc.c
+1
-1
ctypes.h
Modules/_ctypes/ctypes.h
+1
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
305e1a74
...
...
@@ -175,6 +175,8 @@ Core and Builtins
Library
-------
- Issue #16628: Fix a memory leak in ctypes.resize().
- Issue #13120: Allow to call pdb.set_trace() from thread.
Patch by Ilya Sandler.
...
...
Modules/_ctypes/_ctypes.c
Dosyayı görüntüle @
305e1a74
...
...
@@ -2442,7 +2442,7 @@ PyCData_clear(CDataObject *self)
assert
(
dict
);
/* Cannot be NULL for CDataObject instances */
Py_CLEAR
(
self
->
b_objects
);
if
((
self
->
b_needsfree
)
&&
((
size_t
)
dict
->
size
>
sizeof
(
self
->
b_value
)
))
&&
_CDataObject_HasExternalBuffer
(
self
))
PyMem_Free
(
self
->
b_ptr
);
self
->
b_ptr
=
NULL
;
Py_CLEAR
(
self
->
b_base
);
...
...
Modules/_ctypes/callproc.c
Dosyayı görüntüle @
305e1a74
...
...
@@ -1666,7 +1666,7 @@ resize(PyObject *self, PyObject *args)
obj
->
b_size
=
size
;
goto
done
;
}
if
(
obj
->
b_size
<=
sizeof
(
obj
->
b_value
))
{
if
(
!
_CDataObject_HasExternalBuffer
(
obj
))
{
/* We are currently using the objects default buffer, but it
isn't large enough any more. */
void
*
ptr
=
PyMem_Malloc
(
size
);
...
...
Modules/_ctypes/ctypes.h
Dosyayı görüntüle @
305e1a74
...
...
@@ -116,6 +116,7 @@ extern int PyObject_stginfo(PyObject *self, Py_ssize_t *psize, Py_ssize_t *palig
extern
PyTypeObject
PyCData_Type
;
#define CDataObject_CheckExact(v) ((v)->ob_type == &PyCData_Type)
#define CDataObject_Check(v) PyObject_TypeCheck(v, &PyCData_Type)
#define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->b_value)
extern
PyTypeObject
PyCSimpleType_Type
;
#define PyCSimpleTypeObject_CheckExact(v) ((v)->ob_type == &PyCSimpleType_Type)
...
...
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