#15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2)
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index b993fdf..33c143e 100644
--- a/Modules/mmapmodule.c
+++ b/Modules/mmapmodule.c
@@ -1345,6 +1345,7 @@
             if (size == 0) {
                 PyErr_SetString(PyExc_ValueError,
                                 "cannot mmap an empty file");
+                Py_DECREF(m_obj);
                 return NULL;
             }
             if (offset >= size) {