* archival/dpkg.c (create_list): Use chomp.

* archival/tar.c (append_file_list_to_list): Likewise.
This commit is contained in:
Matt Kraai 2002-01-02 19:01:41 +00:00
parent 0733e840bd
commit 39fcb5a750
2 changed files with 2 additions and 10 deletions

View File

@ -1034,7 +1034,6 @@ char **create_list(const char *filename)
FILE *list_stream;
char **file_list = xmalloc(sizeof(char *));
char *line = NULL;
char *last_char;
int length = 0;
int count = 0;
@ -1047,10 +1046,7 @@ char **create_list(const char *filename)
while (getline(&line, &length, list_stream) != -1) {
/* +2 as we need to include space for the terminating NULL pointer */
file_list = xrealloc(file_list, sizeof(char *) * (length + 2));
last_char = last_char_is(line, '\n');
if (last_char) {
*last_char = '\0';
}
chomp(line);
file_list[count] = xstrdup(line);
count++;
}

View File

@ -516,14 +516,10 @@ void append_file_list_to_list(char *filename, char ***name_list, int *num_of_ent
{
FILE *src_stream;
char *line;
char *line_ptr;
src_stream = xfopen(filename, "r");
while ((line = get_line_from_file(src_stream)) != NULL) {
line_ptr = last_char_is(line, '\n');
if (line_ptr) {
*line_ptr = '\0';
}
chomp (line);
append_file_to_list(line, name_list, num_of_entries);
free(line);
}