Skip to content

Commit 7cc203e

Browse files
Merge pull request #1499 from bratpiorka/rrudnick_bump_typos
bump typos
2 parents ce7ee13 + a144c68 commit 7cc203e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/reusable_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
./scripts/check_license/check_headers.sh . "Apache-2.0 WITH LLVM-exception" -v
5858
5959
- name: Run a spell check
60-
uses: crate-ci/typos@a67079b4ae32e18c3f53d75368c52ce53b5fb56b # v1.35.4
60+
uses: crate-ci/typos@a4c3e43aea0a9e9b9e6578d2731ebd9a27e8f6cd # v1.35.5
6161
with:
6262
config: ./.github/workflows/.spellcheck-conf.toml
6363

src/base_alloc/base_alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ static void ba_divide_memory_into_chunks(umf_ba_pool_t *pool, void *ptr,
128128
current_chunk->next = NULL;
129129
pool->metadata.free_list = ptr; // address of the first chunk
130130

131-
// mark the memory as unaccessible again
131+
// mark the memory as inaccessible again
132132
utils_annotate_memory_inaccessible(ptr, size);
133133
}
134134

src/pool/pool_jemalloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ static void *arena_extent_alloc(extent_hooks_t *extent_hooks, void *new_addr,
128128

129129
#ifndef __SANITIZE_ADDRESS__
130130
// jemalloc might write to new extents in realloc, so we cannot
131-
// mark them as unaccessible under asan
131+
// mark them as inaccessible under asan
132132
utils_annotate_memory_inaccessible(ptr, size);
133133
#endif
134134

0 commit comments

Comments
 (0)