more fixes, leaks and compile errors

This commit is contained in:
hexcoder-
2020-11-12 23:47:49 +01:00
parent 35fd6847fe
commit 4a4c14c9a9
7 changed files with 19 additions and 6 deletions

View File

@ -6,7 +6,7 @@
Written mostly by meme -> https://github.com/meme/hotwax
Modificationy by Marc Heuse <mh@mh-sec.de>
Modifications by Marc Heuse <mh@mh-sec.de>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -13,7 +13,7 @@
#define BUF_VAR(type, name) \
type * name##_buf; \
size_t name##_size;
/* this filles in `&structptr->something_buf, &structptr->something_size`. */
/* this fills in `&structptr->something_buf, &structptr->something_size`. */
#define BUF_PARAMS(struct, name) \
(void **)&struct->name##_buf, &struct->name##_size

View File

@ -94,7 +94,13 @@ void *afl_custom_init(void *afl) {
}
state->buf = calloc(sizeof(unsigned char), 4096);
if (!state->buf) { return NULL; }
if (!state->buf) {
free(state);
perror("calloc");
return NULL;
}
return state;

View File

@ -54,7 +54,13 @@ void *afl_custom_init(void *afl) {
}
state->buf = calloc(sizeof(unsigned char), 4096);
if (!state->buf) { return NULL; }
if (!state->buf) {
free(state);
perror("calloc");
return NULL;
}
return state;

View File

@ -8,7 +8,7 @@
#include <stdio.h>
#ifndef _FIXED_CHAR
#define 0x41
#define _FIXED_CHAR 0x41
#endif
typedef struct my_mutator {

View File

@ -26,6 +26,7 @@ int main(int argc, char **argv) {
FILE *f = fopen(argv[1], "r");
char buf[4096];
fread(buf, 1, 4096, f);
fclose(f);
uint32_t offset = buf[100] + (buf[101] << 8);
char test_val = buf[offset];
return test_val < 100;

View File

@ -123,7 +123,7 @@ void __afl_trace(const u32 x) {
u8 c = __builtin_add_overflow(*p, 1, p);
*p += c;
#else
*p += 1 + ((u8)(1 + *p == 0);
*p += 1 + ((u8)(1 + *p) == 0);
#endif
#else
++*p;