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:
Wayne Davison
2004-02-10 17:53:52 +00:00
parent aa0b9ca174
commit 97a67bdfa9

View File

@@ -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");