\param s the string to test
\return true value if the string is NULL or zero length
*/
-#define zstr(s) (!s || *(s) == '\0')
+static inline int zstr(const char *s) {
+ return (!s || *(s) == '\0');
+}
+
#define zstr_buf(s) (*(s) == '\0')
static inline switch_bool_t switch_is_moh(const char *s)
{
}
}
- if ((tmp = switch_channel_get_variable(channel, "effective_callee_id_name")) ||
+ if (((tmp = switch_channel_get_variable(channel, "effective_callee_id_name")) ||
(tmp = switch_channel_get_variable(channel, "sip_callee_id_name")) ||
- (tmp = switch_channel_get_variable(channel, "callee_id_name"))) {
+ (tmp = switch_channel_get_variable(channel, "callee_id_name"))) && !zstr(tmp)) {
name = (char *)tmp;
}
- if ((tmp = switch_channel_get_variable(channel, "effective_callee_id_number")) ||
+ if (((tmp = switch_channel_get_variable(channel, "effective_callee_id_number")) ||
(tmp = switch_channel_get_variable(channel, "sip_callee_id_number")) ||
- (tmp = switch_channel_get_variable(channel, "callee_id_number"))) {
+ (tmp = switch_channel_get_variable(channel, "callee_id_number"))) && !zstr(tmp)) {
number = tmp;
}
if (zstr(name)) name = (char *) number;
- if (zstr(name) || zstr(number)) {
+ if (zstr(name) && zstr(number)) {
goto end;
}
sofia_send_callee_id(session, NULL, NULL);
}
- end:
+ end:
switch_safe_free(dup);
}