The branch, master has been updated
       via  9bf2d26... s3: Fix an uninitialized variable
      from  542396c... s4:ldap.py - add a test for "CN=System" object rename 
behaviour

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


- Log -----------------------------------------------------------------
commit 9bf2d260aa584f4cc8daa4228e71049ee2524ad3
Author: Volker Lendecke <v...@samba.org>
Date:   Sun Aug 1 19:55:06 2010 +0200

    s3: Fix an uninitialized variable

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

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


Changeset truncated at 500 lines:

diff --git a/source3/lib/ldb_compat.c b/source3/lib/ldb_compat.c
index d3b1266..36a29e6 100644
--- a/source3/lib/ldb_compat.c
+++ b/source3/lib/ldb_compat.c
@@ -30,7 +30,7 @@ static int ldb_parse_hex2char(const char *x)
 {
        if (isxdigit(x[0]) && isxdigit(x[1])) {
                const char h1 = x[0], h2 = x[1];
-               int c;
+               int c = 0;
 
                if (h1 >= 'a') c = h1 - (int)'a' + 10;
                else if (h1 >= 'A') c = h1 - (int)'A' + 10;


-- 
Samba Shared Repository

Reply via email to