]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - user_list.c
user_list.c: Fix a memory leak
[paraslash.git] / user_list.c
index c6d45ca5f4b2846f7f5a6350a8e84b3c551539a7..3d57a9454e87e745e29811a99dc19d2dbf534eb5 100644 (file)
@@ -58,11 +58,9 @@ static void populate_user_list(char *user_list_file)
                PARA_DEBUG_LOG("found entry for %s\n", n);
                u = para_malloc(sizeof(struct user));
                u->name = para_strdup(n);
-               u->rsa = para_malloc(sizeof(RSA));
                ret = get_rsa_key(k, &u->rsa, LOAD_PUBLIC_KEY);
                if (ret < 0)
                        break;
-               u->perms = 0;
                char_ptr = p;
                num = sscanf(char_ptr, "%200[A-Z_],%200[A-Z_],%200[A-Z_],%200[A-Z_]",
                        tmp[0], tmp[1], tmp[2], tmp[3]);