svn commit: samba r19065 - in branches/SAMBA_3_0/source/nsswitch: .

vlendec at samba.org vlendec at samba.org
Wed Oct 4 16:18:37 GMT 2006


Author: vlendec
Date: 2006-10-04 16:18:36 +0000 (Wed, 04 Oct 2006)
New Revision: 19065

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=19065

Log:
No functional change, just a trivial simplification
Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd.c	2006-10-04 15:05:00 UTC (rev 19064)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd.c	2006-10-04 16:18:36 UTC (rev 19065)
@@ -634,37 +634,37 @@
 {
 	/* It's a dead client - hold a funeral */
 	
-	if (state != NULL) {
+	if (state == NULL) {
+		return;
+	}
 		
-		/* Close socket */
+	/* Close socket */
 		
-		close(state->sock);
+	close(state->sock);
 		
-		/* Free any getent state */
+	/* Free any getent state */
 		
-		free_getent_state(state->getpwent_state);
-		free_getent_state(state->getgrent_state);
+	free_getent_state(state->getpwent_state);
+	free_getent_state(state->getgrent_state);
 		
-		/* We may have some extra data that was not freed if the
-		   client was killed unexpectedly */
+	/* We may have some extra data that was not freed if the client was
+	   killed unexpectedly */
 
-		SAFE_FREE(state->response.extra_data.data);
+	SAFE_FREE(state->response.extra_data.data);
 
-		if (state->mem_ctx != NULL) {
-			talloc_destroy(state->mem_ctx);
-			state->mem_ctx = NULL;
-		}
+	if (state->mem_ctx != NULL) {
+		talloc_destroy(state->mem_ctx);
+		state->mem_ctx = NULL;
+	}
 
-		remove_fd_event(&state->fd_event);
+	remove_fd_event(&state->fd_event);
 		
-		/* Remove from list and free */
+	/* Remove from list and free */
 		
-		winbindd_remove_client(state);
-		TALLOC_FREE(state);
-	}
+	winbindd_remove_client(state);
+	TALLOC_FREE(state);
 }
 
-
 /* Shutdown client connection which has been idle for the longest time */
 
 static BOOL remove_idle_client(void)



More information about the samba-cvs mailing list