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
75ccea37
Kaydet (Commit)
75ccea37
authored
Eyl 01, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes
(Contributed by Dima Dorfman)
üst
410eb84a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
17 deletions
+8
-17
object.h
Include/object.h
+1
-1
itertoolsmodule.c
Modules/itertoolsmodule.c
+1
-2
enumobject.c
Objects/enumobject.c
+1
-4
genobject.c
Objects/genobject.c
+1
-2
iterobject.c
Objects/iterobject.c
+4
-8
No files found.
Include/object.h
Dosyayı görüntüle @
75ccea37
...
...
@@ -623,7 +623,7 @@ PyAPI_FUNC(void) _Py_AddToAllObjects(PyObject *, int force);
#define Py_CLEAR(op) \
do { \
if (op) { \
PyObject *tmp = (op); \
PyObject *tmp = (
PyObject *)(
op); \
(op) = NULL; \
Py_DECREF(tmp); \
} \
...
...
Modules/itertoolsmodule.c
Dosyayı görüntüle @
75ccea37
...
...
@@ -250,8 +250,7 @@ _grouper_next(_grouperobject *igo)
r
=
gbo
->
currvalue
;
gbo
->
currvalue
=
NULL
;
Py_DECREF
(
gbo
->
currkey
);
gbo
->
currkey
=
NULL
;
Py_CLEAR
(
gbo
->
currkey
);
return
r
;
}
...
...
Objects/enumobject.c
Dosyayı görüntüle @
75ccea37
...
...
@@ -230,10 +230,7 @@ reversed_next(reversedobject *ro)
PyErr_Clear
();
}
ro
->
index
=
-
1
;
if
(
ro
->
seq
!=
NULL
)
{
Py_DECREF
(
ro
->
seq
);
ro
->
seq
=
NULL
;
}
Py_CLEAR
(
ro
->
seq
);
return
NULL
;
}
...
...
Objects/genobject.c
Dosyayı görüntüle @
75ccea37
...
...
@@ -51,8 +51,7 @@ gen_iternext(PyGenObject *gen)
* may keep a chain of frames alive or it could create a reference
* cycle. */
assert
(
f
->
f_back
!=
NULL
);
Py_DECREF
(
f
->
f_back
);
f
->
f_back
=
NULL
;
Py_CLEAR
(
f
->
f_back
);
/* If the generator just returned (as opposed to yielding), signal
* that the generator is exhausted. */
...
...
Objects/iterobject.c
Dosyayı görüntüle @
75ccea37
...
...
@@ -192,18 +192,14 @@ calliter_iternext(calliterobject *it)
return
result
;
/* Common case, fast path */
Py_DECREF
(
result
);
if
(
ok
>
0
)
{
Py_DECREF
(
it
->
it_callable
);
it
->
it_callable
=
NULL
;
Py_DECREF
(
it
->
it_sentinel
);
it
->
it_sentinel
=
NULL
;
Py_CLEAR
(
it
->
it_callable
);
Py_CLEAR
(
it
->
it_sentinel
);
}
}
else
if
(
PyErr_ExceptionMatches
(
PyExc_StopIteration
))
{
PyErr_Clear
();
Py_DECREF
(
it
->
it_callable
);
it
->
it_callable
=
NULL
;
Py_DECREF
(
it
->
it_sentinel
);
it
->
it_sentinel
=
NULL
;
Py_CLEAR
(
it
->
it_callable
);
Py_CLEAR
(
it
->
it_sentinel
);
}
}
return
NULL
;
...
...
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