[asterisk-commits] qwell: branch 1.6.1 r228090 - in /branches/1.6.1: ./ channels/chan_vpb.cc
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Nov 5 13:19:38 CST 2009
Author: qwell
Date: Thu Nov 5 13:19:34 2009
New Revision: 228090
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=228090
Log:
Merged revisions 228080 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r228080 | qwell | 2009-11-05 13:16:29 -0600 (Thu, 05 Nov 2009) | 15 lines
Merged revisions 228079 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r228079 | qwell | 2009-11-05 13:14:25 -0600 (Thu, 05 Nov 2009) | 8 lines
Fix crash on VPB exception when no hardware is present.
(closes issue #14970)
Reported by: tzafrir
Patches:
vpb_exception.diff uploaded by tzafrir (license 46)
Tested by: markwaters
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/channels/chan_vpb.cc
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/channels/chan_vpb.cc
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/channels/chan_vpb.cc?view=diff&rev=228090&r1=228089&r2=228090
==============================================================================
--- branches/1.6.1/channels/chan_vpb.cc (original)
+++ branches/1.6.1/channels/chan_vpb.cc Thu Nov 5 13:19:34 2009
@@ -2702,7 +2702,7 @@
int num_cards = 0;
try {
num_cards = vpb_get_num_cards();
- } catch (VpbException e) {
+ } catch (std::exception e) {
ast_log(LOG_ERROR, "No Voicetronix cards detected\n");
return AST_MODULE_LOAD_DECLINE;
}
More information about the asterisk-commits
mailing list