about summary refs log tree commit diff
path: root/custom_mutators
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-08-20 11:00:07 +0200
committerGitHub <noreply@github.com>2020-08-20 11:00:07 +0200
commit572944d7267e3612ef8da17a180bc3d8f1a958a7 (patch)
treed2110370094b94f1ed0b2ece83ed32fb8de86b15 /custom_mutators
parent17d403b8f873bcadf3fc507f9b49fe4bc0dda162 (diff)
parent779d8f6b7e3454fcfd7a43c4cf54d72ea025e67d (diff)
downloadafl++-572944d7267e3612ef8da17a180bc3d8f1a958a7.tar.gz
Merge pull request #514 from AFLplusplus/dev
push to stable
Diffstat (limited to 'custom_mutators')
-rw-r--r--custom_mutators/radamsa/custom_mutator_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom_mutators/radamsa/custom_mutator_helpers.h b/custom_mutators/radamsa/custom_mutator_helpers.h
index 0848321f..e23c0b6a 100644
--- a/custom_mutators/radamsa/custom_mutator_helpers.h
+++ b/custom_mutators/radamsa/custom_mutator_helpers.h
@@ -324,7 +324,7 @@ static inline void *maybe_grow(void **buf, size_t *size, size_t size_needed) {
 }
 
 /* Swaps buf1 ptr and buf2 ptr, as well as their sizes */
-static inline void swap_bufs(void **buf1, size_t *size1, void **buf2,
+static inline void afl_swap_bufs(void **buf1, size_t *size1, void **buf2,
                              size_t *size2) {
 
   void * scratch_buf = *buf1;