Add missing NULL return value.
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index f571c66..907cc7b 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -4995,7 +4995,7 @@
 		PyObject *tmp;
 		tmp = PyLong_FromUnsignedLong(SIO_RCVALL);
 		if (tmp == NULL)
-			return;
+			return NULL;
 		PyModule_AddObject(m, "SIO_RCVALL", tmp);
 	}
 	PyModule_AddIntConstant(m, "RCVALL_OFF", RCVALL_OFF);