mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
After the jump in line 1051 unicode_tmp is NULL. Found by Coverity.
This commit is contained in:
parent
527a2400fb
commit
d9c1bf7f1f
1 changed files with 1 additions and 1 deletions
|
@ -1099,7 +1099,7 @@ format_float_internal(PyObject *value,
|
||||||
&locale, 0);
|
&locale, 0);
|
||||||
|
|
||||||
done:
|
done:
|
||||||
Py_DECREF(unicode_tmp);
|
Py_XDECREF(unicode_tmp);
|
||||||
free_locale_info(&locale);
|
free_locale_info(&locale);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue