diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-11-13 00:18:17 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-11-13 00:18:17 +0000 |
commit | d0f830b52f57998c47eda2cad30c06ddddcc6911 (patch) | |
tree | bef8caa935ed75943971e902d057b14a0aef95e3 /qpid/cpp/src/tests/perftest.cpp | |
parent | f1aff365de18efc47b093a8556c81d8cfca8bf46 (diff) | |
download | qpid-python-d0f830b52f57998c47eda2cad30c06ddddcc6911.tar.gz |
- call correct delete []
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@594361 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/perftest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/perftest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/perftest.cpp b/qpid/cpp/src/tests/perftest.cpp index f383676da7..abf090af8d 100644 --- a/qpid/cpp/src/tests/perftest.cpp +++ b/qpid/cpp/src/tests/perftest.cpp @@ -182,7 +182,7 @@ void PublishThread::run() { session.execution().sendSyncRequest(); } } - delete msgBuf; + delete [] msgBuf; //Completion compl; if (!opts.summary) cout << " done." << endl; |