diff options
| author | Your Name <you@example.com> | 2021-04-16 07:06:37 +0100 |
|---|---|---|
| committer | Your Name <you@example.com> | 2021-04-16 10:17:43 +0100 |
| commit | 950648c513d031b5c829565255a7c157a33ba7c3 (patch) | |
| tree | d0ec8d2b2bc972092de0595b415d02a6720e4b2b /frida_mode/src/ranges.c | |
| parent | e41d1183cca02fb4d6398df4fc3e028dfd9c5f72 (diff) | |
| download | afl++-950648c513d031b5c829565255a7c157a33ba7c3.tar.gz | |
Changes following code review
Diffstat (limited to 'frida_mode/src/ranges.c')
| -rw-r--r-- | frida_mode/src/ranges.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frida_mode/src/ranges.c b/frida_mode/src/ranges.c index fc14710f..49ef5a62 100644 --- a/frida_mode/src/ranges.c +++ b/frida_mode/src/ranges.c @@ -29,8 +29,7 @@ static void convert_address_token(gchar *token, GumMemoryRange *range) { gchar **tokens; int token_count; tokens = g_strsplit(token, "-", 2); - for (token_count = 0; tokens[token_count] != NULL; token_count++) - ; + for (token_count = 0; tokens[token_count] != NULL; token_count++) {} if (token_count != 2) { |
