Make Modules/socketobject.c compile for Windows again.
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index e1f1a4e..0ec4c0b 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -5218,10 +5218,13 @@
 #endif
 
 #ifdef SIO_RCVALL
-	tmp = PyLong_FromUnsignedLong(SIO_RCVALL);
-	if (tmp == NULL)
-		return;
-	PyModule_AddObject(m, "SIO_RCVALL", tmp);
+	{
+		PyObject *tmp;
+		tmp = PyLong_FromUnsignedLong(SIO_RCVALL);
+		if (tmp == NULL)
+			return;
+		PyModule_AddObject(m, "SIO_RCVALL", tmp);
+	}
 	PyModule_AddIntConstant(m, "RCVALL_OFF", RCVALL_OFF);
 	PyModule_AddIntConstant(m, "RCVALL_ON", RCVALL_ON);
 	PyModule_AddIntConstant(m, "RCVALL_SOCKETLEVELONLY", RCVALL_SOCKETLEVELONLY);