Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
./scripts/check_license/check_headers.sh . "Apache-2.0 WITH LLVM-exception" -v

- name: Run a spell check
uses: crate-ci/typos@a67079b4ae32e18c3f53d75368c52ce53b5fb56b # v1.35.4
uses: crate-ci/typos@a4c3e43aea0a9e9b9e6578d2731ebd9a27e8f6cd # v1.35.5
with:
config: ./.github/workflows/.spellcheck-conf.toml

Expand Down
2 changes: 1 addition & 1 deletion src/base_alloc/base_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ static void ba_divide_memory_into_chunks(umf_ba_pool_t *pool, void *ptr,
current_chunk->next = NULL;
pool->metadata.free_list = ptr; // address of the first chunk

// mark the memory as unaccessible again
// mark the memory as inaccessible again
utils_annotate_memory_inaccessible(ptr, size);
}

Expand Down
2 changes: 1 addition & 1 deletion src/pool/pool_jemalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ static void *arena_extent_alloc(extent_hooks_t *extent_hooks, void *new_addr,

#ifndef __SANITIZE_ADDRESS__
// jemalloc might write to new extents in realloc, so we cannot
// mark them as unaccessible under asan
// mark them as inaccessible under asan
utils_annotate_memory_inaccessible(ptr, size);
#endif

Expand Down
Loading