Commit 9f96ffc8 authored by Antoine Pitrou's avatar Antoine Pitrou

Remove duplicated line when merging (it was even valid C!).

Thanks Florent for noticing.
parent 45b63659
...@@ -561,7 +561,6 @@ binascii_a2b_hqx(PyObject *self, PyObject *args) ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment