Fixed a crash bug in get_local_name() when the file list is empty.

This commit is contained in:
Wayne Davison
2007-09-23 21:54:03 +00:00
parent e0cfd15bcc
commit 7341ee2dfd

3
main.c
View File

@@ -582,7 +582,8 @@ static char *get_local_name(struct file_list *flist, char *dest_path)
exit_cleanup(RERR_FILEIO);
}
if (strcmp(flist->files[0]->basename, ".") == 0)
if (flist->high >= flist->low
&& strcmp(flist->files[flist->low]->basename, ".") == 0)
flist->files[0]->flags |= FLAG_DIR_CREATED;
if (verbose)