[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Wed Jan 25 10:23:03 MST 2012


The branch, master has been updated
       via  851b2c1 s3: Fix a panic in aio_pthread
      from  67126ed s3-waf: Reduce dependencies of winbindd.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 851b2c177418255f6f44780bf9d09445d61fec3c
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Jan 25 16:43:49 2012 +0100

    s3: Fix a panic in aio_pthread
    
    Found by Nir Drang <nir at fabrix.tv>
    
    Thanks!
    
    Autobuild-User: Volker Lendecke <vlendec at samba.org>
    Autobuild-Date: Wed Jan 25 18:22:37 CET 2012 on sn-devel-104

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

Summary of changes:
 source3/modules/vfs_aio_pthread.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c
index aeacf28..e1cc492 100644
--- a/source3/modules/vfs_aio_pthread.c
+++ b/source3/modules/vfs_aio_pthread.c
@@ -458,7 +458,7 @@ static void aio_pthread_handle_suspend_completion(struct event_context *event_ct
 	}
 
 	pjobid = talloc_array(NULL, int, 1);
-	if (pjobid) {
+	if (pjobid == NULL) {
 		smb_panic("aio_pthread_handle_suspend_completion: no memory.");
 	}
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list