mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-09 09:58:08 -04:00
If XMIT_HAS_IDEV_DATA is set in receive_file_entry(), we now bomb out
if flist->hlink_pool isn't set (instead of neglecting to read the idev info).
This commit is contained in:
2
flist.c
2
flist.c
@@ -659,7 +659,7 @@ void receive_file_entry(struct file_struct **fptr, unsigned short flags,
|
||||
#if SUPPORT_HARD_LINKS
|
||||
if (preserve_hard_links && protocol_version < 28 && S_ISREG(mode))
|
||||
flags |= XMIT_HAS_IDEV_DATA;
|
||||
if (flags & XMIT_HAS_IDEV_DATA && flist->hlink_pool) {
|
||||
if (flags & XMIT_HAS_IDEV_DATA) {
|
||||
INO64_T inode;
|
||||
file->link_u.idev = pool_talloc(flist->hlink_pool,
|
||||
struct idev, 1, "inode_table");
|
||||
|
||||
Reference in New Issue
Block a user