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
72c2a0f6
Kaydet (Commit)
72c2a0f6
authored
Ock 04, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.2 (closes #23165)
üst
7919acb9
f18bf6fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
NEWS
Misc/NEWS
+3
-0
fileutils.c
Python/fileutils.c
+13
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
72c2a0f6
...
...
@@ -23,6 +23,9 @@ Core and Builtins
- Issue #22518: Fix integer overflow issues in latin-1 encoding.
- Issue #23165: Perform overflow checks before allocating memory in the
_Py_char2wchar function.
Library
-------
...
...
Python/fileutils.c
Dosyayı görüntüle @
72c2a0f6
...
...
@@ -201,8 +201,11 @@ decode_ascii_surrogateescape(const char *arg, size_t *size)
wchar_t
*
res
;
unsigned
char
*
in
;
wchar_t
*
out
;
size_t
argsize
=
strlen
(
arg
)
+
1
;
res
=
PyMem_Malloc
((
strlen
(
arg
)
+
1
)
*
sizeof
(
wchar_t
));
if
(
argsize
>
PY_SSIZE_T_MAX
/
sizeof
(
wchar_t
))
return
NULL
;
res
=
PyMem_Malloc
(
argsize
*
sizeof
(
wchar_t
));
if
(
!
res
)
return
NULL
;
...
...
@@ -284,10 +287,15 @@ _Py_char2wchar(const char* arg, size_t *size)
argsize
=
mbstowcs
(
NULL
,
arg
,
0
);
#endif
if
(
argsize
!=
(
size_t
)
-
1
)
{
res
=
(
wchar_t
*
)
PyMem_Malloc
((
argsize
+
1
)
*
sizeof
(
wchar_t
));
if
(
argsize
==
PY_SSIZE_T_MAX
)
goto
oom
;
argsize
+=
1
;
if
(
argsize
>
PY_SSIZE_T_MAX
/
sizeof
(
wchar_t
))
goto
oom
;
res
=
(
wchar_t
*
)
PyMem_Malloc
(
argsize
*
sizeof
(
wchar_t
));
if
(
!
res
)
goto
oom
;
count
=
mbstowcs
(
res
,
arg
,
argsize
+
1
);
count
=
mbstowcs
(
res
,
arg
,
argsize
);
if
(
count
!=
(
size_t
)
-
1
)
{
wchar_t
*
tmp
;
/* Only use the result if it contains no
...
...
@@ -310,6 +318,8 @@ _Py_char2wchar(const char* arg, size_t *size)
/* Overallocate; as multi-byte characters are in the argument, the
actual output could use less memory. */
argsize
=
strlen
(
arg
)
+
1
;
if
(
argsize
>
PY_SSIZE_T_MAX
/
sizeof
(
wchar_t
))
goto
oom
;
res
=
(
wchar_t
*
)
PyMem_Malloc
(
argsize
*
sizeof
(
wchar_t
));
if
(
!
res
)
goto
oom
;
...
...
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