diff options
author | Jose <jose@zeroc.com> | 2009-09-28 23:16:18 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-09-28 23:16:18 +0200 |
commit | 721d2351343a20999c0955d5a9c65c27e4abf305 (patch) | |
tree | 20af7a0b2dec04b802dab939b0e6933b652eec3d /cpp/src/slice2java/Gen.cpp | |
parent | Fixed bug 4262 - Fix for connection errors (diff) | |
download | ice-721d2351343a20999c0955d5a9c65c27e4abf305.tar.bz2 ice-721d2351343a20999c0955d5a9c65c27e4abf305.tar.xz ice-721d2351343a20999c0955d5a9c65c27e4abf305.zip |
4284 - StackOverflow in Freeze/evitor
Diffstat (limited to 'cpp/src/slice2java/Gen.cpp')
-rw-r--r-- | cpp/src/slice2java/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp index a6caab4a7fa..1c6881b3938 100644 --- a/cpp/src/slice2java/Gen.cpp +++ b/cpp/src/slice2java/Gen.cpp @@ -5557,7 +5557,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) } out << nl << "catch(java.lang.Exception __ex)"; out << sb; - out << nl << "ice_exception(__ex);"; + out << nl << "super.ice_exception(__ex);"; out << eb; out << eb; } |