Fix a refleak in c82451eeb595.
diff --git a/Modules/operator.c b/Modules/operator.c
index c38ec16..25b0737 100644
--- a/Modules/operator.c
+++ b/Modules/operator.c
@@ -292,9 +292,7 @@
         PyBuffer_Release(&view_b);
     }
 
-    result = PyBool_FromLong(rc);
-    Py_INCREF(result);
-    return result;
+    return PyBool_FromLong(rc);
 }
 
 /* operator methods **********************************************************/