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
97551744
Kaydet (Commit)
97551744
authored
Eki 12, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #13096: Fix segfault in CTypes POINTER handling of large values.
üst
0f032a04
817905b2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
test_pointers.py
Lib/ctypes/test/test_pointers.py
+8
-0
NEWS
Misc/NEWS
+3
-0
callproc.c
Modules/_ctypes/callproc.c
+8
-2
No files found.
Lib/ctypes/test/test_pointers.py
Dosyayı görüntüle @
97551744
...
...
@@ -7,6 +7,8 @@ ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
c_long
,
c_ulong
,
c_longlong
,
c_ulonglong
,
c_double
,
c_float
]
python_types
=
[
int
,
int
,
int
,
int
,
int
,
int
,
int
,
int
,
int
,
int
,
float
,
float
]
LargeNamedType
=
type
(
'T'
*
2
**
25
,
(
Structure
,),
{})
large_string
=
'T'
*
2
**
25
class
PointersTestCase
(
unittest
.
TestCase
):
...
...
@@ -188,5 +190,11 @@ class PointersTestCase(unittest.TestCase):
mth
=
WINFUNCTYPE
(
None
)(
42
,
"name"
,
(),
None
)
self
.
assertEqual
(
bool
(
mth
),
True
)
def
test_pointer_type_name
(
self
):
self
.
assertTrue
(
POINTER
(
LargeNamedType
))
def
test_pointer_type_str_name
(
self
):
self
.
assertTrue
(
POINTER
(
large_string
))
if
__name__
==
'__main__'
:
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
97551744
...
...
@@ -174,6 +174,9 @@ Core and Builtins
Library
-------
-
Issue
#
13096
:
Fixed
segfault
in
CTypes
POINTER
handling
of
large
values
.
-
Issue
#
11694
:
Raise
ConversionError
in
xdrlib
as
documented
.
Patch
by
Filip
Gruszczy
ń
ski
and
Claudiu
Popa
.
...
...
Modules/_ctypes/callproc.c
Dosyayı görüntüle @
97551744
...
...
@@ -1672,24 +1672,30 @@ POINTER(PyObject *self, PyObject *cls)
}
if
(
PyUnicode_CheckExact
(
cls
))
{
char
*
name
=
_PyUnicode_AsString
(
cls
);
buf
=
alloca
(
strlen
(
name
)
+
3
+
1
);
buf
=
PyMem_Malloc
(
strlen
(
name
)
+
3
+
1
);
if
(
buf
==
NULL
)
return
PyErr_NoMemory
();
sprintf
(
buf
,
"LP_%s"
,
name
);
result
=
PyObject_CallFunction
((
PyObject
*
)
Py_TYPE
(
&
PyCPointer_Type
),
"s(O){}"
,
buf
,
&
PyCPointer_Type
);
PyMem_Free
(
buf
);
if
(
result
==
NULL
)
return
result
;
key
=
PyLong_FromVoidPtr
(
result
);
}
else
if
(
PyType_Check
(
cls
))
{
typ
=
(
PyTypeObject
*
)
cls
;
buf
=
alloca
(
strlen
(
typ
->
tp_name
)
+
3
+
1
);
buf
=
PyMem_Malloc
(
strlen
(
typ
->
tp_name
)
+
3
+
1
);
if
(
buf
==
NULL
)
return
PyErr_NoMemory
();
sprintf
(
buf
,
"LP_%s"
,
typ
->
tp_name
);
result
=
PyObject_CallFunction
((
PyObject
*
)
Py_TYPE
(
&
PyCPointer_Type
),
"s(O){sO}"
,
buf
,
&
PyCPointer_Type
,
"_type_"
,
cls
);
PyMem_Free
(
buf
);
if
(
result
==
NULL
)
return
result
;
Py_INCREF
(
cls
);
...
...
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