From f2e04a3a2cf5432ffcb7bb814cc94960cf4c3130 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Thu, 18 Sep 2008 01:49:08 +0000 Subject: [PATCH] don't deref NULL. It can have bad results. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9587 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_cpp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/switch_cpp.h b/src/include/switch_cpp.h index f799c57ce0..7120793519 100644 --- a/src/include/switch_cpp.h +++ b/src/include/switch_cpp.h @@ -10,7 +10,7 @@ extern "C" { #endif #include #define this_check(x) do { if (!this) { switch_log_printf(SWITCH_CHANNEL_LOG,SWITCH_LOG_ERROR, "object is not initalized\n"); return x;}} while(0) -#define this_check_void() do { if (!this) { switch_log_printf(SWITCH_CHANNEL_LOG,SWITCH_LOG_ERROR, "object is not initalized\n");}} while(0) +#define this_check_void() do { if (!this) { switch_log_printf(SWITCH_CHANNEL_LOG,SWITCH_LOG_ERROR, "object is not initalized\n"); return;}} while(0) #define sanity_check(x) do { if (!(session && allocated)) { switch_log_printf(SWITCH_CHANNEL_LOG,SWITCH_LOG_ERROR, "session is not initalized\n"); return x;}} while(0) #define sanity_check_noreturn do { if (!(session && allocated)) { switch_log_printf(SWITCH_CHANNEL_LOG,SWITCH_LOG_ERROR, "session is not initalized\n"); return;}} while(0) #define init_vars() allocated = 0; \