Fix compiler warnings (uninitialized variables), false alarms in fact

This commit is contained in:
Victor Stinner 2015-10-14 12:10:20 +02:00
parent f6358a7e4c
commit 1285e5c805
1 changed files with 2 additions and 4 deletions

View File

@ -1587,7 +1587,7 @@ long_to_decimal_string_internal(PyObject *aa,
char **bytes_str)
{
PyLongObject *scratch, *a;
PyObject *str;
PyObject *str = NULL;
Py_ssize_t size, strlen, size_a, i, j;
digit *pout, *pin, rem, tenpow;
int negative;
@ -1664,7 +1664,6 @@ long_to_decimal_string_internal(PyObject *aa,
return -1;
}
kind = writer->kind;
str = NULL;
}
else if (bytes_writer) {
*bytes_str = _PyBytesWriter_Prepare(bytes_writer, *bytes_str, strlen);
@ -1777,7 +1776,7 @@ long_format_binary(PyObject *aa, int base, int alternate,
_PyBytesWriter *bytes_writer, char **bytes_str)
{
PyLongObject *a = (PyLongObject *)aa;
PyObject *v;
PyObject *v = NULL;
Py_ssize_t sz;
Py_ssize_t size_a;
enum PyUnicode_Kind kind;
@ -1834,7 +1833,6 @@ long_format_binary(PyObject *aa, int base, int alternate,
if (_PyUnicodeWriter_Prepare(writer, sz, 'x') == -1)
return -1;
kind = writer->kind;
v = NULL;
}
else if (bytes_writer) {
*bytes_str = _PyBytesWriter_Prepare(bytes_writer, *bytes_str, sz);