diff options
author | Alexey Izbyshev <izbyshev@ispras.ru> | 2018-09-12 21:05:20 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2018-09-12 21:05:20 (GMT) |
commit | 6f82bffd2df63a4072b3f0483cdbe93ddedb87e9 (patch) | |
tree | cd3a90ec23e56561a64b6d277cec7e861501baa5 | |
parent | 0dd71807a98c4a86ece2aea869ea99f09204b16b (diff) | |
download | cpython-6f82bffd2df63a4072b3f0483cdbe93ddedb87e9.zip cpython-6f82bffd2df63a4072b3f0483cdbe93ddedb87e9.tar.gz cpython-6f82bffd2df63a4072b3f0483cdbe93ddedb87e9.tar.bz2 |
bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)
Reported by Svace static analyzer.
-rw-r--r-- | Modules/_json.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_json.c b/Modules/_json.c index 5a9464e..ac6e017 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -1374,7 +1374,7 @@ _encoded_const(PyObject *obj) if (s_null == NULL) { s_null = PyUnicode_InternFromString("null"); } - Py_INCREF(s_null); + Py_XINCREF(s_null); return s_null; } else if (obj == Py_True) { @@ -1382,7 +1382,7 @@ _encoded_const(PyObject *obj) if (s_true == NULL) { s_true = PyUnicode_InternFromString("true"); } - Py_INCREF(s_true); + Py_XINCREF(s_true); return s_true; } else if (obj == Py_False) { @@ -1390,7 +1390,7 @@ _encoded_const(PyObject *obj) if (s_false == NULL) { s_false = PyUnicode_InternFromString("false"); } - Py_INCREF(s_false); + Py_XINCREF(s_false); return s_false; } else { |