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

Thanks Florent for noticing.
This commit is contained in:
Antoine Pitrou 2010-01-16 18:15:15 +00:00
parent 45b6365974
commit 9f96ffc8b9
1 changed files with 0 additions and 1 deletions

View File

@ -561,7 +561,6 @@ binascii_a2b_hqx(PyObject *self, PyObject *args)
/* Allocate a string that is too big (fixed later)
Add two to the initial length to prevent interning which
would preclude subsequent resizing. */
if ( (rv=PyBytes_FromStringAndSize(NULL, len+2)) == NULL )
if ( (rv=PyBytes_FromStringAndSize(NULL, len+2)) == NULL ) {
PyBuffer_Release(&pascii);
return NULL;