Skip to content

Commit

Permalink
Update Modules/posixmodule.c
Browse files Browse the repository at this point in the history
Co-authored-by: Eryk Sun <eryksun@gmail.com>
  • Loading branch information
nineteendo and eryksun authored Apr 24, 2024
1 parent 62a42fb commit 6a74f15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -5504,8 +5504,8 @@ os__path_splitroot_ex_impl(PyObject *module, PyObject *path)
exit:
PyMem_Free(buffer);
Py_XDECREF(drv);
Py_DECREF(root);
Py_DECREF(tail);
Py_XDECREF(root);
Py_XDECREF(tail);
return result;
}

Expand Down

0 comments on commit 6a74f15

Please sign in to comment.