mirror of
https://github.com/python/cpython.git
synced 2025-09-04 16:01:10 +00:00
Avoid useless "++" at the end of functions
Warnings found by the Clang Static Analyzer.
This commit is contained in:
parent
25095b2be6
commit
97e561ef24
3 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue