summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_user.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-06-24 14:25:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:58:00 -0500
commit702dd3da6297967ce140771110f85d61e0dff1e5 (patch)
treee06a266b02168ac5f0eebcc7d7ed9f5f946eb95b /source3/nsswitch/winbindd_user.c
parent57fa9dbfe7c69b0370e6f3ae8a82d9b6d391ef6b (diff)
downloadsamba-702dd3da6297967ce140771110f85d61e0dff1e5.tar.gz
samba-702dd3da6297967ce140771110f85d61e0dff1e5.tar.bz2
samba-702dd3da6297967ce140771110f85d61e0dff1e5.zip
r7877: Attempt to fix a smb_panic reported by Pavel Rochnyack.
Volker (This used to be commit 7d1b890fead61551465e2a972e4097d9c1a4d6fd)
Diffstat (limited to 'source3/nsswitch/winbindd_user.c')
-rw-r--r--source3/nsswitch/winbindd_user.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/source3/nsswitch/winbindd_user.c b/source3/nsswitch/winbindd_user.c
index 55b63a8182..82ab79eb4c 100644
--- a/source3/nsswitch/winbindd_user.c
+++ b/source3/nsswitch/winbindd_user.c
@@ -401,7 +401,7 @@ void winbindd_getpwuid(struct winbindd_cli_state *state)
/* Rewind file pointer for ntdom passwd database */
-void winbindd_setpwent(struct winbindd_cli_state *state)
+static BOOL winbindd_setpwent_internal(struct winbindd_cli_state *state)
{
struct winbindd_domain *domain;
@@ -410,8 +410,7 @@ void winbindd_setpwent(struct winbindd_cli_state *state)
/* Check user has enabled this */
if (!lp_winbind_enum_users()) {
- request_error(state);
- return;
+ return False;
}
/* Free old static data if it exists */
@@ -425,7 +424,7 @@ void winbindd_setpwent(struct winbindd_cli_state *state)
/* add any local users we have */
if ( (domain_state = (struct getent_state *)malloc(sizeof(struct getent_state))) == NULL )
- return WINBINDD_ERROR;
+ return False;
ZERO_STRUCTP(domain_state);
@@ -453,8 +452,7 @@ void winbindd_setpwent(struct winbindd_cli_state *state)
if ((domain_state = SMB_MALLOC_P(struct getent_state)) == NULL) {
DEBUG(0, ("malloc failed\n"));
- request_error(state);
- return;
+ return False;
}
ZERO_STRUCTP(domain_state);
@@ -467,7 +465,16 @@ void winbindd_setpwent(struct winbindd_cli_state *state)
}
state->getpwent_initialized = True;
- request_ok(state);
+ return True;
+}
+
+void winbindd_setpwent(struct winbindd_cli_state *state)
+{
+ if (winbindd_setpwent_internal(state)) {
+ request_ok(state);
+ } else {
+ request_error(state);
+ }
}
/* Close file pointer to ntdom passwd database */
@@ -603,7 +610,7 @@ void winbindd_getpwent(struct winbindd_cli_state *state)
user_list = (struct winbindd_pw *)state->response.extra_data;
if (!state->getpwent_initialized)
- winbindd_setpwent(state);
+ winbindd_setpwent_internal(state);
if (!(ent = state->getpwent_state)) {
request_error(state);