-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from marcransome/leak-detection
Add memory leak and buffer overflow/underflow detection
- Loading branch information
Showing
4 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#include <stdlib.h> | ||
|
||
extern void mock_assert(const int result, const char * const expression, | ||
const char * const file, const int line); | ||
|
||
#undef assert | ||
#define assert(expression) \ | ||
mock_assert((int)(expression), #expression, __FILE__, __LINE__); | ||
|
||
extern void * _test_malloc(const size_t size, const char *file, const int line); | ||
extern void * _test_realloc(void *ptr, const size_t size, const char *file, const int line); | ||
extern void * _test_calloc(const size_t number_of_elements, const size_t size, | ||
const char *file, const int line); | ||
extern void _test_free(void * const ptr, const char *file, const int line); | ||
|
||
#define malloc(size) _test_malloc(size, __FILE__, __LINE__) | ||
#define realloc(ptr, size, file, line) _test_realloc(ptr, size, __FILE__, __LINE__) | ||
#define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__) | ||
#define free(ptr) _test_free(ptr, __FILE__, __LINE__) |