tree-wide: do not use "re" with fmemopen

The man page says nothing about "e". Glibc clearly accepts it without fuss, but
it is meaningless for a memory object (and probably doesn't work). This use is
not portable, so let's avoid it.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2022-10-19 09:49:59 +02:00
parent dc1768131a
commit f3bd4b3df5
4 changed files with 6 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ static inline FILE* data_to_file(const uint8_t *data, size_t size) {
if (size == 0)
return fopen("/dev/null", "re");
else
return fmemopen_unlocked((char*) data, size, "re");
return fmemopen_unlocked((char*) data, size, "r");
}
/* Check if we are within the specified size range.

View File

@@ -344,7 +344,7 @@ static int inspect_image(int argc, char *argv[], void *userdata) {
_cleanup_free_ char *pretty_portable = NULL, *pretty_os = NULL;
_cleanup_fclose_ FILE *f = NULL;
f = fmemopen_unlocked((void*) data, sz, "re");
f = fmemopen_unlocked((void*) data, sz, "r");
if (!f)
return log_error_errno(errno, "Failed to open /etc/os-release buffer: %m");
@@ -400,7 +400,7 @@ static int inspect_image(int argc, char *argv[], void *userdata) {
*id = NULL, *version_id = NULL, *sysext_scope = NULL, *portable_prefixes = NULL;
_cleanup_fclose_ FILE *f = NULL;
f = fmemopen_unlocked((void*) data, sz, "re");
f = fmemopen_unlocked((void*) data, sz, "r");
if (!f)
return log_error_errno(errno, "Failed to open extension-release buffer: %m");

View File

@@ -677,7 +677,7 @@ TEST(fgetc) {
_cleanup_fclose_ FILE *f = NULL;
char c;
assert_se(f = fmemopen_unlocked((void*) chars, sizeof(chars), "re"));
assert_se(f = fmemopen_unlocked((void*) chars, sizeof(chars), "r"));
for (size_t i = 0; i < sizeof(chars); i++) {
assert_se(safe_fgetc(f, &c) == 1);
@@ -770,7 +770,7 @@ static void test_read_line_one_file(FILE *f) {
TEST(read_line1) {
_cleanup_fclose_ FILE *f = NULL;
assert_se(f = fmemopen_unlocked((void*) buffer, sizeof(buffer), "re"));
assert_se(f = fmemopen_unlocked((void*) buffer, sizeof(buffer), "r"));
test_read_line_one_file(f);
}

View File

@@ -21,7 +21,7 @@ static void test_libmount_unescaping_one(
_cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
_cleanup_fclose_ FILE *f = NULL;
f = fmemopen((char*) string, strlen(string), "re");
f = fmemopen((char*) string, strlen(string), "r");
assert_se(f);
assert_se(libmount_parse(title, f, &table, &iter) >= 0);