diff options
author | Alan Conway <aconway@apache.org> | 2006-10-17 21:03:03 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-10-17 21:03:03 +0000 |
commit | 9da1df0a07bb9543078fd5384e47dc651e4ceaf0 (patch) | |
tree | 5201030359c14d7ad63b789b050ddc467683dcbb /cpp/src/qpidd.cpp | |
parent | 3706a84dc89c1e667472a9854f4cd8375fe25345 (diff) | |
download | qpid-python-9da1df0a07bb9543078fd5384e47dc651e4ceaf0.tar.gz |
Fix core dump if address in use.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@465054 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpidd.cpp')
-rw-r--r-- | cpp/src/qpidd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpidd.cpp b/cpp/src/qpidd.cpp index 293380d46d..e93676513a 100644 --- a/cpp/src/qpidd.cpp +++ b/cpp/src/qpidd.cpp @@ -41,7 +41,7 @@ int main(int argc, char** argv) broker->run(); } return 0; - } catch(std::exception e) { + } catch(const std::exception& e) { std::cout << e.what() << std::endl; } return 1; |