summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-06-11 22:06:11 +0000
committerJeremy Allison <jra@samba.org>2001-06-11 22:06:11 +0000
commit3fc8c04cc23e3eff3f3fc636a56b1acb8fb52a81 (patch)
tree23adc67e39a851971d292e61184a4a3dda750c4b /source3
parentf5197e023073d23166d51e2522b380a2d9c5e5a1 (diff)
downloadsamba-3fc8c04cc23e3eff3f3fc636a56b1acb8fb52a81.tar.gz
samba-3fc8c04cc23e3eff3f3fc636a56b1acb8fb52a81.tar.bz2
samba-3fc8c04cc23e3eff3f3fc636a56b1acb8fb52a81.zip
Found & fixed memory bug. num+1 * sizeof(x) != (num+1)*sizeof(x)........
Jeremy. (This used to be commit e0f88cabfc5ef480e7f8a7fecd2d12a1b4371a2a)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/util_getent.c63
1 files changed, 47 insertions, 16 deletions
diff --git a/source3/lib/util_getent.c b/source3/lib/util_getent.c
index 4123be8e24..610d31f0d5 100644
--- a/source3/lib/util_getent.c
+++ b/source3/lib/util_getent.c
@@ -21,6 +21,26 @@
#include "includes.h"
+static void print_grent_list(struct sys_grent *glist)
+{
+ DEBUG(100, ("print_grent_list: %x\n", glist ));
+ while (glist) {
+ DEBUG(100,("glist: %x ", glist));
+ if (glist->gr_name)
+ DEBUG(100,(": gr_name = (%x) %s ", glist->gr_name, glist->gr_name));
+ if (glist->gr_passwd)
+ DEBUG(100,(": gr_passwd = (%x) %s ", glist->gr_passwd, glist->gr_passwd));
+ if (glist->gr_mem) {
+ int i;
+ for (i = 0; glist->gr_mem[i]; i++)
+ DEBUG(100,(" : gr_mem[%d] = (%x) %s ", i, glist->gr_mem[i], glist->gr_mem[i]));
+ }
+ DEBUG(100,(": gr_next = %x\n", glist->next ));
+ glist = glist->next;
+ }
+ DEBUG(100,("FINISHED !\n\n"));
+}
+
/****************************************************************
Returns a single linked list of group entries.
Use grent_free() to free it after use.
@@ -37,14 +57,20 @@ struct sys_grent * getgrent_list(void)
DEBUG (0, ("Out of memory in getgrent_list!\n"));
return NULL;
}
+ memset(gent, '\0', sizeof(struct sys_grent));
glist = gent;
setgrent();
grp = getgrent();
+ if (grp == NULL) {
+ endgrent();
+ free(glist);
+ return NULL;
+ }
+
while (grp != NULL) {
int i,num;
- memset(gent, '\0', sizeof(struct sys_grent));
if (grp->gr_name) {
if ((gent->gr_name = strdup(grp->gr_name)) == NULL)
goto err;
@@ -60,9 +86,11 @@ struct sys_grent * getgrent_list(void)
;
/* alloc space for gr_mem string pointers */
- if ((gent->gr_mem = (char **) malloc(num+1 * sizeof(char *))) == NULL)
+ if ((gent->gr_mem = (char **) malloc((num+1) * sizeof(char *))) == NULL)
goto err;
+ memset(gent->gr_mem, '\0', (num+1) * sizeof(char *));
+
for (i=0; i < num; i++) {
if ((gent->gr_mem[i] = strdup(grp->gr_mem[i])) == NULL)
goto err;
@@ -75,10 +103,13 @@ struct sys_grent * getgrent_list(void)
if (gent->next == NULL)
goto err;
gent = gent->next;
+ memset(gent, '\0', sizeof(struct sys_grent));
}
}
endgrent();
+ print_grent_list(glist);
+ DEBUG(100,("getgrent_list returned %x\n", glist ));
return glist;
err:
@@ -96,25 +127,25 @@ struct sys_grent * getgrent_list(void)
void grent_free (struct sys_grent *glist)
{
+ DEBUG(100,("getgrent_free %x\n", glist ));
while (glist) {
- char **ary;
- struct sys_grent *temp;
+ struct sys_grent *prev;
+ print_grent_list(glist);
+
if (glist->gr_name)
free(glist->gr_name);
if (glist->gr_passwd)
free(glist->gr_passwd);
if (glist->gr_mem) {
- ary = glist->gr_mem;
- while (*ary) {
- free(*ary);
- ary++;
- }
+ int i;
+ for (i = 0; glist->gr_mem[i]; i++)
+ free(glist->gr_mem[i]);
free(glist->gr_mem);
}
- temp = glist->next;
- free(glist);
- glist = temp;
+ prev = glist;
+ glist = glist->next;
+ free(prev);
}
}
@@ -191,7 +222,7 @@ struct sys_pwent * getpwent_list(void)
void pwent_free (struct sys_pwent *plist)
{
while (plist) {
- struct sys_pwent *temp;
+ struct sys_pwent *prev;
if (plist->pw_name)
free(plist->pw_name);
@@ -204,8 +235,8 @@ void pwent_free (struct sys_pwent *plist)
if (plist->pw_shell)
free(plist->pw_shell);
- temp = plist->next;
- free(plist);
- plist = temp;
+ prev = plist;
+ plist = plist->next;
+ free(prev);
}
}