From 9813658fe34bbc787ccc49c280bd916e3b55d487 Mon Sep 17 00:00:00 2001 From: dvossel Date: Mon, 4 Jan 2010 16:39:11 +0000 Subject: app_queue segfaults if realtime field uniqueid is NULL (closes issue #16385) Reported by: haakon Patches: app_queue.c.patch uploaded by haakon (license 880) app_queue.c.patch_v2 uploaded by dvossel (license 671) Tested by: haakon git-svn-id: http://svn.digium.com/svn/asterisk/trunk@237327 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_queue.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apps') diff --git a/apps/app_queue.c b/apps/app_queue.c index 29fc040db..d41d27295 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -1851,6 +1851,11 @@ static void rt_handle_member_record(struct call_queue *q, char *interface, const int paused = 0; int found = 0; + if (ast_strlen_zero(rt_uniqueid)) { + ast_log(LOG_WARNING, "Realtime field uniqueid is empty for memeber %s\n", S_OR(membername, "NULL")); + return; + } + if (penalty_str) { penalty = atoi(penalty_str); if (penalty < 0) -- cgit v1.2.3