g_queue_is_empty() internally checks for NULL and return TRUE in that case. --- attrib/gattrib.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/attrib/gattrib.c b/attrib/gattrib.c index 01c19f9..d648b82 100644 --- a/attrib/gattrib.c +++ b/attrib/gattrib.c @@ -447,10 +447,8 @@ static gboolean received_data(GIOChannel *io, GIOCondition cond, gpointer data) status = 0; done: - norequests = attrib->requests == NULL || - g_queue_is_empty(attrib->requests); - noresponses = attrib->responses == NULL || - g_queue_is_empty(attrib->responses); + norequests = g_queue_is_empty(attrib->requests); + noresponses = g_queue_is_empty(attrib->responses); if (cmd) { if (cmd->func) -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html