From 8e68eb61f25deafc3c3b3beb814e5deadd05a496 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sun, 11 Mar 2001 03:03:07 +0000 Subject: [PATCH] Make sure we close the group and password databases when we are done with them; this closes SF bug #407504. --- Modules/grpmodule.c | 1 + Modules/pwdmodule.c | 1 + 2 files changed, 2 insertions(+) diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c index 41a5ec97573..5dbcf9862bc 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -87,6 +87,7 @@ grp_getgrall(PyObject *self, PyObject *args) } Py_DECREF(v); } + endgrent(); return d; } diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index 290dc451455..4c1b7db8789 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -102,6 +102,7 @@ pwd_getpwall(PyObject *self, PyObject *args) } Py_DECREF(v); } + endpwent(); return d; } #endif