Fix a Py_DECREF to a Py_XDECREF.

Found using Clang's static analyzer.
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index d428c66..3b4ccfd 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -993,7 +993,7 @@
         else {
             bytes_read = readinst(buf, BUF_SIZE, readmethod);
             if (bytes_read < 0) {
-                Py_DECREF(readmethod);
+                Py_XDECREF(readmethod);
                 return NULL;
             }
         }