diff options
author | van Hauser <vh@thc.org> | 2023-06-29 18:00:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 18:00:46 +0300 |
commit | 641d02ab7211585e72e215405cd49c0712a8b4df (patch) | |
tree | 6bf544caf53f4ef7f7ca8ad02c2a412150758aa9 /include/alloc-inl.h | |
parent | af8c68a774d0271ae6a2145ac566e1c7024e95d5 (diff) | |
parent | 3e1d7941077b1457f702988063d6b9fdd9b80740 (diff) | |
download | afl++-641d02ab7211585e72e215405cd49c0712a8b4df.tar.gz |
Merge pull request #1780 from AFLplusplus/dev
push to stable
Diffstat (limited to 'include/alloc-inl.h')
-rw-r--r-- | include/alloc-inl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/alloc-inl.h b/include/alloc-inl.h index 1e9a192b..cff808b2 100644 --- a/include/alloc-inl.h +++ b/include/alloc-inl.h @@ -322,7 +322,7 @@ static inline void DFL_ck_free(void *mem) { static inline void *DFL_ck_realloc(void *orig, u32 size) { void *ret; - u32 old_size = 0; + u32 old_size = 0; if (!size) { @@ -392,7 +392,7 @@ static inline void *DFL_ck_realloc(void *orig, u32 size) { static inline u8 *DFL_ck_strdup(u8 *str) { void *ret; - u32 size; + u32 size; if (!str) return NULL; @@ -438,14 +438,14 @@ struct TRK_obj { void *ptr; char *file, *func; - u32 line; + u32 line; }; #ifdef AFL_MAIN struct TRK_obj *TRK[ALLOC_BUCKETS]; -u32 TRK_cnt[ALLOC_BUCKETS]; +u32 TRK_cnt[ALLOC_BUCKETS]; #define alloc_report() TRK_report() |