[SCM] Samba Shared Repository - branch v3-6-test updated

Günther Deschner gd at samba.org
Thu May 12 12:32:06 MDT 2011


The branch, v3-6-test has been updated
       via  7e68a8a s3-lib/smbconf: fix uninitialized error code in smbconf_reg_init().
      from  e71f9a4 libsmbconf: Define a doxygen group for libsmbconf.

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


- Log -----------------------------------------------------------------
commit 7e68a8a94f645930eda2edd1b61da98eb1d1f834
Author: Günther Deschner <gd at samba.org>
Date:   Thu May 12 17:03:20 2011 +0200

    s3-lib/smbconf: fix uninitialized error code in smbconf_reg_init().
    
    Guenther
    
    Autobuild-User: Günther Deschner <gd at samba.org>
    Autobuild-Date: Thu May 12 18:09:16 CEST 2011 on sn-devel-104
    (cherry picked from commit 7da530e1e42ab15152bc39d4edd4e9a10f091a22)

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

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


Changeset truncated at 500 lines:

diff --git a/source3/lib/smbconf/smbconf_reg.c b/source3/lib/smbconf/smbconf_reg.c
index 6982795..599ebb7 100644
--- a/source3/lib/smbconf/smbconf_reg.c
+++ b/source3/lib/smbconf/smbconf_reg.c
@@ -600,7 +600,7 @@ static sbcErr smbconf_reg_init(struct smbconf_ctx *ctx, const char *path)
 	}
 	ctx->path = talloc_strdup(ctx, path);
 	if (ctx->path == NULL) {
-		werr = WERR_NOMEM;
+		err = SBC_ERR_NOMEM;
 		goto done;
 	}
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list