[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4359-g76ff38c

Jeremy Allison jra at samba.org
Tue Nov 11 22:39:36 GMT 2008


The branch, v3-3-test has been updated
       via  76ff38c5ec05b5267ed085df7296a46e3dfc76e5 (commit)
      from  ad034aa4601a784519fa83fef0eabba52811b314 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test


- Log -----------------------------------------------------------------
commit 76ff38c5ec05b5267ed085df7296a46e3dfc76e5
Author: Jeremy Allison <jra at samba.org>
Date:   Tue Nov 11 14:38:00 2008 -0800

    Fix bug 5891] : smbd crashed when viewing the eventlog exported by "eventlog list"
    Don't mix TALLOC and SAFE_FREE().
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source/rpc_server/srv_eventlog_nt.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/rpc_server/srv_eventlog_nt.c b/source/rpc_server/srv_eventlog_nt.c
index e56a2e9..89a8ebc 100644
--- a/source/rpc_server/srv_eventlog_nt.c
+++ b/source/rpc_server/srv_eventlog_nt.c
@@ -79,7 +79,7 @@ static bool elog_check_access( EVENTLOG_INFO *info, NT_USER_TOKEN *token )
 	/* get the security descriptor for the file */
 	
 	sec_desc = get_nt_acl_no_snum( info, tdbname );
-	SAFE_FREE( tdbname );
+	TALLOC_FREE( tdbname );
 	
 	if ( !sec_desc ) {
 		DEBUG(5,("elog_check_access: Unable to get NT ACL for %s\n", 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list