]> git.ipfire.org Git - thirdparty/asterisk.git/commit
apps/app_queue: Prevent possible crash when evaluating queue penalty rules
authorMatthew Jordan <mjordan@digium.com>
Thu, 9 Apr 2015 02:05:04 +0000 (02:05 +0000)
committerMatthew Jordan <mjordan@digium.com>
Thu, 9 Apr 2015 02:05:04 +0000 (02:05 +0000)
commite05c8ae68e95367ea60fdc5e8a5f2cf7f24e0f32
tree5a3141eba7195bc862b1e1041cce9d7f260af635
parentf21b45db4920debe736b710951b4860fb420f306
apps/app_queue: Prevent possible crash when evaluating queue penalty rules

Although it only occurred once, a crash occurred when a queue attempted to
evaluate a queue penalty rule that appeared to have already been destroyed.
In many locations in app_queue, a test is done to see if qe->pr is NULL;
however, when we dispose of a queue's penalty rules, we don't set the pointer
to NULL after free'ing it. This patch does that to prevent any dangling
pointers from lingering on the queue object.

Review: https://reviewboard.asterisk.org/r/4522

ASTERISK-23319 #close
Reported by: Vadim
patches:
  rb4552.patch submitted by Stefan Engström (License 6691)
........

Merged revisions 434448 from http://svn.asterisk.org/svn/asterisk/branches/11

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@434449 65c4cc65-6c06-0410-ace0-fbb531ad65f3
apps/app_queue.c