Avoid useless "++" at the end of functions

Warnings found by the Clang Static Analyzer.
This commit is contained in:
Victor Stinner 2011-05-26 13:53:47 +02:00
parent 25095b2be6
commit 97e561ef24
3 changed files with 6 additions and 6 deletions

View file

@ -6474,7 +6474,7 @@ PyUnicode_EncodeDecimal(Py_UNICODE *s,
}
}
/* 0-terminate the output string */
*output++ = '\0';
*output = '\0';
Py_XDECREF(exc);
Py_XDECREF(errorHandler);
return 0;