Add myself to auto_ccs and remove usage of EXT2_FLAG_NOFREE_ON_ERROR (#8154)

Co-authored-by: Max Shavrick <mxms@google.com>
This commit is contained in:
Max 2022-08-04 22:50:33 -07:00 committed by GitHub
parent 8ddcf0df18
commit 02abbeaf3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -36,7 +36,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
FuzzedDataProvider stream(data, size);
const FuzzerType f = stream.ConsumeEnum<FuzzerType>();
const int flags = stream.ConsumeIntegral<int>();
int flags = stream.ConsumeIntegral<int>();
flags &= (~EXT2_FLAG_NOFREE_ON_ERROR); // Unset EXT2_FLAG_NOFREE_ON_ERROR
static const char* fname = "ext2_test_file";

View File

@ -32,7 +32,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
FuzzedDataProvider stream(data, size);
const FuzzerType f = stream.ConsumeEnum<FuzzerType>();
const int flags = stream.ConsumeIntegral<int>();
int flags = stream.ConsumeIntegral<int>();
flags &= (~EXT2_FLAG_NOFREE_ON_ERROR); // Unset EXT2_FLAG_NOFREE_ON_ERROR
static const char* fname = "ext2_test_file";

View File

@ -4,4 +4,5 @@ primary_contact: "tytso@mit.edu"
auto_ccs:
- "theodore.tso@gmail.com"
- "tytso@google.com"
- "mxms@google.com"
main_repo: 'https://github.com/tytso/e2fsprogs'