Update libglnx
This is mostly the `copy_file_range` changes plus the Coverity files.
```
Colin Walters (4):
localalloc: Abort on EBADF from close() by default
local-alloc: Remove almost all macros like glnx_free, glnx_unref_variant
console: Fix Coverity NULL deref warning
fdio: Merge systemd code to use copy_file_range(), use FICLONE
Jonathan Lebon (1):
console: trim useless check
Matthew Leeds (1):
dirfd: Fix typo in comment
Philip Withnall (1):
glnx-console: Add missing NULL check before writing out text
```
Update submodule: libglnx
Closes: #1081
Approved by: jlebon
This commit is contained in:
parent
b669bcafe5
commit
6063bdb013
2
libglnx
2
libglnx
|
|
@ -1 +1 @@
|
||||||
Subproject commit ea6df95f22c8f2973714bdbb8b1accc4e37d4d56
|
Subproject commit e226ccf6913d1d852fde1e150a99fab508f85c34
|
||||||
|
|
@ -122,7 +122,7 @@ write_regular_file_content (OstreeRepo *self,
|
||||||
int infd = g_file_descriptor_based_get_fd ((GFileDescriptorBased*) input);
|
int infd = g_file_descriptor_based_get_fd ((GFileDescriptorBased*) input);
|
||||||
guint64 len = g_file_info_get_size (file_info);
|
guint64 len = g_file_info_get_size (file_info);
|
||||||
|
|
||||||
if (glnx_regfile_copy_bytes (infd, outfd, (off_t)len, TRUE) < 0)
|
if (glnx_regfile_copy_bytes (infd, outfd, (off_t)len) < 0)
|
||||||
return glnx_throw_errno_prefix (error, "regfile copy");
|
return glnx_throw_errno_prefix (error, "regfile copy");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -467,7 +467,7 @@ create_regular_tmpfile_linkable_with_content (OstreeRepo *self,
|
||||||
if (G_IS_FILE_DESCRIPTOR_BASED (input))
|
if (G_IS_FILE_DESCRIPTOR_BASED (input))
|
||||||
{
|
{
|
||||||
int infd = g_file_descriptor_based_get_fd ((GFileDescriptorBased*) input);
|
int infd = g_file_descriptor_based_get_fd ((GFileDescriptorBased*) input);
|
||||||
if (glnx_regfile_copy_bytes (infd, tmpf.fd, (off_t)length, TRUE) < 0)
|
if (glnx_regfile_copy_bytes (infd, tmpf.fd, (off_t)length) < 0)
|
||||||
return glnx_throw_errno_prefix (error, "regfile copy");
|
return glnx_throw_errno_prefix (error, "regfile copy");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue