diff options
| author | Charles E. Rolke <chug@apache.org> | 2013-07-01 19:13:12 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2013-07-01 19:13:12 +0000 |
| commit | 928d72bf80c84d3281a6e6e127d9054b7740c69e (patch) | |
| tree | 969ff2a716e22c91d00aaf497ca86adfa4a0be18 /qpid/cpp/src | |
| parent | 2549e2808832606b05383d8383e56d1fafffedee (diff) | |
| download | qpid-python-928d72bf80c84d3281a6e6e127d9054b7740c69e.tar.gz | |
QPID-4971: Uninitialized variables in QueueSettings
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1498630 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/QueueSettings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/broker/QueueSettings.cpp b/qpid/cpp/src/qpid/broker/QueueSettings.cpp index 35aa46260c..5a149c1c6d 100644 --- a/qpid/cpp/src/qpid/broker/QueueSettings.cpp +++ b/qpid/cpp/src/qpid/broker/QueueSettings.cpp @@ -99,6 +99,8 @@ QueueSettings::QueueSettings(bool d, bool a) : isBrowseOnly(false), autoDeleteDelay(0), alertRepeatInterval(60), + maxFileSize(0), + maxFileCount(0), sequencing(false) {} |
