Lines Matching defs:new
129 struct mount *new;
132 new = (struct mount*)realloc(mounts, capacity * sizeof(*mounts));
133 if (!new)
135 mounts = new;
137 new = &mounts[count++];
138 new->src = strdup(ent->mnt_fsname);
139 new->dst = strdup(ent->mnt_dir);
140 new->fs = strdup(ent->mnt_type);
141 if (!new->src || !new->dst || !new->fs)