[asterisk-scf-commits] asterisk-scf/release/sip.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Tue May 24 12:47:38 CDT 2011
branch "master" has been updated
via 129d4f1fa49096b11f99e553c2c1a8bb6f8041a4 (commit)
from 635de237c3aef8713ab818ceda11faf81930477d (commit)
Summary of changes:
src/PJSipSessionModule.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 129d4f1fa49096b11f99e553c2c1a8bb6f8041a4
Author: Joshua Colp <jcolp at digium.com>
Date: Tue May 24 14:47:03 2011 -0300
Fix a bug where failure cases would not occur due to the dummy function being executed and not the implementation one.
diff --git a/src/PJSipSessionModule.cpp b/src/PJSipSessionModule.cpp
index 3f75ca5..ae6ba8f 100644
--- a/src/PJSipSessionModule.cpp
+++ b/src/PJSipSessionModule.cpp
@@ -383,7 +383,7 @@ protected:
return Complete;
}
- SuspendableWorkResult calledBack()
+ SuspendableWorkResult calledBack(const SuspendableWorkListenerPtr&)
{
SessionRouterPrx router = SessionRouterPrx::uncheckedCast(mAsyncResult->getProxy());
try
@@ -1011,7 +1011,7 @@ protected:
return Complete;
}
- SuspendableWorkResult calledBack()
+ SuspendableWorkResult calledBack(const SuspendableWorkListenerPtr&)
{
assert(mAsyncResult);
SessionListenerPrx listener = SessionListenerPrx::uncheckedCast(mAsyncResult->getProxy());
-----------------------------------------------------------------------
--
asterisk-scf/release/sip.git
More information about the asterisk-scf-commits
mailing list