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
6f82bffd
Kaydet (Commit)
6f82bffd
authored
Eyl 12, 2018
tarafından
Alexey Izbyshev
Kaydeden (comit)
Berker Peksag
Eyl 12, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)
Reported by Svace static analyzer.
üst
0dd71807
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
_json.c
Modules/_json.c
+3
-3
No files found.
Modules/_json.c
Dosyayı görüntüle @
6f82bffd
...
@@ -1374,7 +1374,7 @@ _encoded_const(PyObject *obj)
...
@@ -1374,7 +1374,7 @@ _encoded_const(PyObject *obj)
if
(
s_null
==
NULL
)
{
if
(
s_null
==
NULL
)
{
s_null
=
PyUnicode_InternFromString
(
"null"
);
s_null
=
PyUnicode_InternFromString
(
"null"
);
}
}
Py_INCREF
(
s_null
);
Py_
X
INCREF
(
s_null
);
return
s_null
;
return
s_null
;
}
}
else
if
(
obj
==
Py_True
)
{
else
if
(
obj
==
Py_True
)
{
...
@@ -1382,7 +1382,7 @@ _encoded_const(PyObject *obj)
...
@@ -1382,7 +1382,7 @@ _encoded_const(PyObject *obj)
if
(
s_true
==
NULL
)
{
if
(
s_true
==
NULL
)
{
s_true
=
PyUnicode_InternFromString
(
"true"
);
s_true
=
PyUnicode_InternFromString
(
"true"
);
}
}
Py_INCREF
(
s_true
);
Py_
X
INCREF
(
s_true
);
return
s_true
;
return
s_true
;
}
}
else
if
(
obj
==
Py_False
)
{
else
if
(
obj
==
Py_False
)
{
...
@@ -1390,7 +1390,7 @@ _encoded_const(PyObject *obj)
...
@@ -1390,7 +1390,7 @@ _encoded_const(PyObject *obj)
if
(
s_false
==
NULL
)
{
if
(
s_false
==
NULL
)
{
s_false
=
PyUnicode_InternFromString
(
"false"
);
s_false
=
PyUnicode_InternFromString
(
"false"
);
}
}
Py_INCREF
(
s_false
);
Py_
X
INCREF
(
s_false
);
return
s_false
;
return
s_false
;
}
}
else
{
else
{
...
...
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