mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-21 03:12:48 +02:00
Remove anachronistic casts of xmalloc, xrealloc, and xcalloc return values.
This commit is contained in:
@@ -227,7 +227,7 @@ canonicalize_file_name (const char *name)
|
||||
new_size += end - start + 1;
|
||||
else
|
||||
new_size += PATH_MAX;
|
||||
rpath = (char *) xrealloc (rpath, new_size);
|
||||
rpath = xrealloc (rpath, new_size);
|
||||
rpath_limit = rpath + new_size;
|
||||
|
||||
dest = rpath + dest_offset;
|
||||
|
||||
Reference in New Issue
Block a user