diff options
author | Jim Meyering <jim@meyering.net> | 2004-07-04 17:47:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-07-04 17:47:09 +0000 |
commit | ae206c4b1c6ca22345e20da3aa52b1aefec988bc (patch) | |
tree | 76aedf716692ec6af1e18a74fc78c84fcc3c2529 /src | |
parent | aead5906dccb1740ed3fa2b89e09448542c89005 (diff) | |
download | coreutils-ae206c4b1c6ca22345e20da3aa52b1aefec988bc.tar.xz |
(do_copy): Assume path_concat returns non-NULL.
(make_path_private): 2nd arg is now size_t, not int,
to avoid problem when path_concat dir name is longer than 2 GiB (!).
Diffstat (limited to 'src')
-rw-r--r-- | src/cp.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -371,7 +371,7 @@ re_protect (const char *const_dst_path, int src_offset, /* FIXME: find a way to synch this function with the one in lib/makepath.c. */ static int -make_path_private (const char *const_dirpath, int src_offset, int mode, +make_path_private (const char *const_dirpath, size_t src_offset, int mode, const char *verbose_fmt_string, struct dir_attr **attr_list, int *new_dst, int (*xstat)()) { @@ -582,8 +582,6 @@ do_copy (int n_files, char **file, const char *target_directory, /* Append all of `arg' (minus any trailing slash) to `dest'. */ dst_path = path_concat (target_directory, arg_no_trailing_slash, &arg_in_concat); - if (dst_path == NULL) - xalloc_die (); /* For --parents, we have to make sure that the directory dir_name (dst_path) exists. We may have to create a few |