|
From: Paul F. <pa...@so...> - 2023-02-28 22:27:45
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=9fa27e001ec22eda595e56345be81af045e488f0 commit 9fa27e001ec22eda595e56345be81af045e488f0 Author: Paul Floyd <pj...@wa...> Date: Tue Feb 28 23:27:22 2023 +0100 Typo in comment Diff: --- coregrind/m_replacemalloc/vg_replace_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_replacemalloc/vg_replace_malloc.c b/coregrind/m_replacemalloc/vg_replace_malloc.c index 251b8ac9d3..494ef96371 100644 --- a/coregrind/m_replacemalloc/vg_replace_malloc.c +++ b/coregrind/m_replacemalloc/vg_replace_malloc.c @@ -1845,7 +1845,7 @@ extern int *___errno (void) __attribute__((weak)); } \ if (VG_POSIX_MEMALIGN_SIZE_0_RETURN_NULL && \ size == 0U) { \ - /* no allocation for zro size on Solaris/Illumos */ \ + /* no allocation for zero size on Solaris/Illumos */ \ *memptr = NULL; \ return 0; \ } \ |