[asterisk-commits] jpeeler: branch 1.6.0 r175189 - in /branches/1.6.0: ./ main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Feb 12 12:00:49 CST 2009
Author: jpeeler
Date: Thu Feb 12 12:00:49 2009
New Revision: 175189
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=175189
Log:
Merged revisions 175188 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r175188 | jpeeler | 2009-02-12 12:00:11 -0600 (Thu, 12 Feb 2009) | 12 lines
Merged revisions 175187 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r175187 | jpeeler | 2009-02-12 11:57:10 -0600 (Thu, 12 Feb 2009) | 6 lines
Fix crash in event of failed attempt to transfer to parking
The peer is not going to exist during a transfer, so don't try to play a sound
to it.
........
................
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/main/features.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/features.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/main/features.c?view=diff&rev=175189&r1=175188&r2=175189
==============================================================================
--- branches/1.6.0/main/features.c (original)
+++ branches/1.6.0/main/features.c Thu Feb 12 12:00:49 2009
@@ -614,7 +614,8 @@
int park_status;
if ((pu = park_space_reserve(rchan)) == NULL) {
- ast_stream_and_wait(peer, "beeperr", "");
+ if (peer)
+ ast_stream_and_wait(peer, "beeperr", "");
return FEATURE_RETURN_PARKFAILED;
}
More information about the asterisk-commits
mailing list