Remove duplicated line when merging (it was even valid C!).
Thanks Florent for noticing.
diff --git a/Modules/binascii.c b/Modules/binascii.c
index 289225b..38d22ab 100644
--- a/Modules/binascii.c
+++ b/Modules/binascii.c
@@ -561,7 +561,6 @@
 	/* 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;