diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wrapper/wrapper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wrapper/wrapper.c b/src/wrapper/wrapper.c index 3acef77..a78026d 100644 --- a/src/wrapper/wrapper.c +++ b/src/wrapper/wrapper.c @@ -36,6 +36,8 @@ static union { static void trace(const char *const symbol) { + assert(symbol); + if (__cxa_demangle.ptr) { // >If output_buffer is not long enough, it is expanded using realloc // Holy fuck gcc what the fuck? Guess we don't use stack then, thanks @@ -57,6 +59,7 @@ trace(const char *const symbol) void* wrapper_create(const char *const symbol, void *function) { + assert(symbol && function); #ifdef WRAPPER_TRACE if (!__cxa_demangle.ptr) __cxa_demangle.ptr = dlsym(RTLD_DEFAULT, "__cxa_demangle"); |