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
9e09c26e
Kaydet (Commit)
9e09c26e
authored
Tem 18, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18501, #18408: Fix expat handlers in pyexpat, don't call Python
functions if a Python exception was raised
üst
3fd8cbd5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
pyexpat.c
Modules/pyexpat.c
+15
-0
No files found.
Modules/pyexpat.c
Dosyayı görüntüle @
9e09c26e
...
...
@@ -402,6 +402,10 @@ static void
my_CharacterDataHandler
(
void
*
userData
,
const
XML_Char
*
data
,
int
len
)
{
xmlparseobject
*
self
=
(
xmlparseobject
*
)
userData
;
if
(
PyErr_Occurred
())
return
;
if
(
self
->
buffer
==
NULL
)
call_character_handler
(
self
,
data
,
len
);
else
{
...
...
@@ -436,6 +440,9 @@ my_StartElementHandler(void *userData,
PyObject
*
container
,
*
rv
,
*
args
;
int
i
,
max
;
if
(
PyErr_Occurred
())
return
;
if
(
flush_character_buffer
(
self
)
<
0
)
return
;
/* Set max to the number of slots filled in atts[]; max/2 is
...
...
@@ -519,6 +526,8 @@ my_##NAME##Handler PARAMS {\
INIT \
\
if (have_handler(self, NAME)) { \
if (PyErr_Occurred()) \
return RETURN; \
if (flush_character_buffer(self) < 0) \
return RETURN; \
args = Py_BuildValue PARAM_FORMAT ;\
...
...
@@ -633,6 +642,9 @@ my_ElementDeclHandler(void *userData,
PyObject
*
rv
=
NULL
;
PyObject
*
modelobj
,
*
nameobj
;
if
(
PyErr_Occurred
())
return
;
if
(
flush_character_buffer
(
self
)
<
0
)
goto
finally
;
modelobj
=
conv_content_model
(
model
,
(
conv_string_to_unicode
));
...
...
@@ -1125,6 +1137,9 @@ PyUnknownEncodingHandler(void *encodingHandlerData,
void
*
data
;
unsigned
int
kind
;
if
(
PyErr_Occurred
())
return
XML_STATUS_ERROR
;
if
(
template_buffer
[
1
]
==
0
)
{
for
(
i
=
0
;
i
<
256
;
i
++
)
template_buffer
[
i
]
=
i
;
...
...
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