BIND 10 trac905, updated. 7deb4955ef8816885376e558e7f0eaf65e22b4d4 [trac905] missing return in a catch clause
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue May 10 23:07:16 UTC 2011
The branch, trac905 has been updated
via 7deb4955ef8816885376e558e7f0eaf65e22b4d4 (commit)
from b916d130e0799f457634cfba2b06fc1250db54a0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 7deb4955ef8816885376e558e7f0eaf65e22b4d4
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Tue May 10 16:06:59 2011 -0700
[trac905] missing return in a catch clause
-----------------------------------------------------------------------
Summary of changes:
src/lib/util/python/wrapper_template.cc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/util/python/wrapper_template.cc b/src/lib/util/python/wrapper_template.cc
index 53f07f9..2fe7567 100644
--- a/src/lib/util/python/wrapper_template.cc
+++ b/src/lib/util/python/wrapper_template.cc
@@ -104,6 +104,7 @@ int
const string ex_what = "Failed to construct @CPPCLASS@ object: " +
string(ex.what());
PyErr_SetString(po_IscException, ex_what.c_str());
+ return (-1);
} catch (...) {
PyErr_SetString(po_IscException,
"Unexpected exception in constructing @CPPCLASS@");
More information about the bind10-changes
mailing list