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
0d92c4f6
Kaydet (Commit)
0d92c4f6
authored
Kas 12, 2012
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16416: Fix error handling in _Py_wchar2char() _Py_char2wchar() functions
üst
fc93ec59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
15 deletions
+21
-15
unicodeobject.c
Objects/unicodeobject.c
+5
-4
fileutils.c
Python/fileutils.c
+16
-11
No files found.
Objects/unicodeobject.c
Dosyayı görüntüle @
0d92c4f6
...
...
@@ -4691,7 +4691,10 @@ onError:
#ifdef __APPLE__
/* Simplified UTF-8 decoder using surrogateescape error handler,
used to decode the command line arguments on Mac OS X. */
used to decode the command line arguments on Mac OS X.
Return a pointer to a newly allocated wide character string (use
PyMem_Free() to free the memory), or NULL on memory allocation error. */
wchar_t*
_Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
...
...
@@ -4702,10 +4705,8 @@ _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
/* Note: size will always be longer than the resulting Unicode
character count */
if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1)) {
PyErr_NoMemory();
if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1))
return NULL;
}
unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t));
if (!unicode)
return NULL;
...
...
Python/fileutils.c
Dosyayı görüntüle @
0d92c4f6
...
...
@@ -67,10 +67,12 @@ _Py_char2wchar(const char* arg, size_t *size)
#ifdef __APPLE__
wchar_t
*
wstr
;
wstr
=
_Py_DecodeUTF8_surrogateescape
(
arg
,
strlen
(
arg
));
if
(
wstr
==
NULL
)
return
NULL
;
if
(
size
!=
NULL
)
*
size
=
wcslen
(
wstr
);
if
(
size
!=
NULL
)
{
if
(
wstr
!=
NULL
)
*
size
=
wcslen
(
wstr
);
else
*
size
=
(
size_t
)
-
1
;
}
return
wstr
;
#else
wchar_t
*
res
;
...
...
@@ -204,22 +206,25 @@ _Py_wchar2char(const wchar_t *text, size_t *error_pos)
char
*
cpath
;
unicode
=
PyUnicode_FromWideChar
(
text
,
wcslen
(
text
));
if
(
unicode
==
NULL
)
{
Py_DECREF
(
unicode
);
if
(
unicode
==
NULL
)
return
NULL
;
}
bytes
=
_PyUnicode_AsUTF8String
(
unicode
,
"surrogateescape"
);
Py_DECREF
(
unicode
);
if
(
bytes
==
NULL
)
{
PyErr_Clear
();
if
(
error_pos
!=
NULL
)
*
error_pos
=
(
size_t
)
-
1
;
return
NULL
;
}
len
=
PyBytes_GET_SIZE
(
bytes
);
cpath
=
PyMem_Malloc
(
len
+
1
);
if
(
cpath
==
NULL
)
{
PyErr_Clear
();
Py_DECREF
(
bytes
);
if
(
error_pos
!=
NULL
)
*
error_pos
=
(
size_t
)
-
1
;
return
NULL
;
}
memcpy
(
cpath
,
PyBytes_AsString
(
bytes
),
len
+
1
);
...
...
@@ -231,9 +236,6 @@ _Py_wchar2char(const wchar_t *text, size_t *error_pos)
size_t
i
,
size
,
converted
;
wchar_t
c
,
buf
[
2
];
if
(
error_pos
!=
NULL
)
*
error_pos
=
(
size_t
)
-
1
;
/* The function works in two steps:
1. compute the length of the output buffer in bytes (size)
2. outputs the bytes */
...
...
@@ -280,8 +282,11 @@ _Py_wchar2char(const wchar_t *text, size_t *error_pos)
size
+=
1
;
/* nul byte at the end */
result
=
PyMem_Malloc
(
size
);
if
(
result
==
NULL
)
if
(
result
==
NULL
)
{
if
(
error_pos
!=
NULL
)
*
error_pos
=
(
size_t
)
-
1
;
return
NULL
;
}
bytes
=
result
;
}
return
result
;
...
...
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