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
40db90c1
Kaydet (Commit)
40db90c1
authored
Nis 20, 2017
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Nis 20, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29802: Fix reference counting in module-level struct functions (#1213)
when pass arguments of wrong type.
üst
8f5cdfa9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
0 deletions
+15
-0
test_struct.py
Lib/test/test_struct.py
+10
-0
NEWS
Misc/NEWS
+3
-0
_struct.c
Modules/_struct.c
+1
-0
unicodeobject.c
Objects/unicodeobject.c
+1
-0
No files found.
Lib/test/test_struct.py
Dosyayı görüntüle @
40db90c1
...
...
@@ -599,6 +599,16 @@ class StructTest(unittest.TestCase):
'offset -11 out of range for 10-byte buffer'
):
struct
.
pack_into
(
'<B'
,
byte_list
,
-
11
,
123
)
def
test_issue29802
(
self
):
# When the second argument of struct.unpack() was of wrong type
# the Struct object was decrefed twice and the reference to
# deallocated object was left in a cache.
with
self
.
assertRaises
(
TypeError
):
struct
.
unpack
(
b
'b'
,
0
)
# Shouldn't crash.
self
.
assertEqual
(
struct
.
unpack
(
b
'b'
,
b
'a'
),
(
b
'a'
[
0
],))
class
UnpackIteratorTest
(
unittest
.
TestCase
):
"""
Tests for iterative unpacking (struct.Struct.iter_unpack).
...
...
Misc/NEWS
Dosyayı görüntüle @
40db90c1
...
...
@@ -317,6 +317,9 @@ Extension Modules
Library
-------
- bpo-29802: Fixed reference counting in module-level struct functions when
pass arguments of wrong type.
- bpo-30070: Fixed leaks and crashes in errors handling in the parser module.
- bpo-22352: Column widths in the output of dis.dis() are now adjusted for
...
...
Modules/_struct.c
Dosyayı görüntüle @
40db90c1
...
...
@@ -2083,6 +2083,7 @@ cache_struct_converter(PyObject *fmt, PyObject **ptr)
if
(
fmt
==
NULL
)
{
Py_DECREF
(
*
ptr
);
*
ptr
=
NULL
;
return
1
;
}
...
...
Objects/unicodeobject.c
Dosyayı görüntüle @
40db90c1
...
...
@@ -3907,6 +3907,7 @@ PyUnicode_FSDecoder(PyObject* arg, void* addr)
PyObject *output = NULL;
if (arg == NULL) {
Py_DECREF(*(PyObject**)addr);
*(PyObject**)addr = NULL;
return 1;
}
...
...
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