https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r76174 | qwell | 2007-07-20 15:32:55 -0500 (Fri, 20 Jul 2007) | 2 lines
It's possible for sub->owner to be NULL here if you cancel the call immediately after/during sending a digit.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@76175
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
sub = find_subchannel_by_instance_reference(d, lineInstance, callReference);
- if (sub && (sub->owner->_state < AST_STATE_UP)) {
+ if (sub && (sub->owner && sub->owner->_state < AST_STATE_UP)) {
char dgt;
int digit = letohl(req->data.keypad.button);