[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-unstable-584-gb40efc2

Jeremy Allison jra at samba.org
Mon Dec 10 22:22:00 GMT 2007


The branch, v3-2-test has been updated
       via  b40efc2fe63a3420b62fbf1ea8936112c5a24bdc (commit)
      from  70950b419a57465c38bb36722644b95b1d14f76d (commit)

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


- Log -----------------------------------------------------------------
commit b40efc2fe63a3420b62fbf1ea8936112c5a24bdc
Author: Jeremy Allison <jra at samba.org>
Date:   Mon Dec 10 14:21:28 2007 -0800

    Fix errors from next_token conversion. Spotted by
    Andreas Schneider <anschneider at suse.de>.
    Jeremy.

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

Summary of changes:
 source/libsmb/namequery.c |   14 +++++---------
 1 files changed, 5 insertions(+), 9 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/libsmb/namequery.c b/source/libsmb/namequery.c
index 0decc59..c0d6b6e 100644
--- a/source/libsmb/namequery.c
+++ b/source/libsmb/namequery.c
@@ -791,12 +791,12 @@ bool getlmhostsent(TALLOC_CTX *ctx, XFILE *fp, char **pp_name, int *name_type,
 	*pp_name = NULL;
 
 	while(!x_feof(fp) && !x_ferror(fp)) {
-		char *ip;
-		char *flags;
-		char *extra;
-		char *name;
+		char *ip = NULL;
+		char *flags = NULL;
+		char *extra = NULL;
+		char *name = NULL;
 		const char *ptr;
-		char *ptr1;
+		char *ptr1 = NULL;
 		int count = 0;
 
 		*name_type = -1;
@@ -809,10 +809,6 @@ bool getlmhostsent(TALLOC_CTX *ctx, XFILE *fp, char **pp_name, int *name_type,
 			continue;
 		}
 
-		ip[0] = '\0';
-		name[0] = '\0';
-		flags[0] = '\0';
-
 		ptr = line;
 
 		if (next_token_talloc(ctx, &ptr, &ip, NULL))


-- 
Samba Shared Repository


More information about the samba-cvs mailing list