Kaydet (Commit) 53aa1d7c authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix possible if unlikely leak

üst 0f1e3ac8
......@@ -8888,9 +8888,13 @@ unicode_maketrans(PyUnicodeObject *null, PyObject *args)
/* create entries for translating chars in x to those in y */
for (i = 0; i < PyUnicode_GET_SIZE(x); i++) {
key = PyLong_FromLong(PyUnicode_AS_UNICODE(x)[i]);
if (!key)
goto err;
value = PyLong_FromLong(PyUnicode_AS_UNICODE(y)[i]);
if (!key || !value)
if (!value) {
Py_DECREF(key);
goto err;
}
res = PyDict_SetItem(new, key, value);
Py_DECREF(key);
Py_DECREF(value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment