mirror of
https://github.com/python/cpython.git
synced 2025-09-19 15:10:58 +00:00
Remove duplicated line when merging (it was even valid C!).
Thanks Florent for noticing.
This commit is contained in:
parent
45b6365974
commit
9f96ffc8b9
1 changed files with 0 additions and 1 deletions
|
@ -561,7 +561,6 @@ binascii_a2b_hqx(PyObject *self, PyObject *args)
|
||||||
/* Allocate a string that is too big (fixed later)
|
/* Allocate a string that is too big (fixed later)
|
||||||
Add two to the initial length to prevent interning which
|
Add two to the initial length to prevent interning which
|
||||||
would preclude subsequent resizing. */
|
would preclude subsequent resizing. */
|
||||||
if ( (rv=PyBytes_FromStringAndSize(NULL, len+2)) == NULL )
|
|
||||||
if ( (rv=PyBytes_FromStringAndSize(NULL, len+2)) == NULL ) {
|
if ( (rv=PyBytes_FromStringAndSize(NULL, len+2)) == NULL ) {
|
||||||
PyBuffer_Release(&pascii);
|
PyBuffer_Release(&pascii);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue