You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by cc...@apache.org on 2007/11/13 01:18:18 UTC

svn commit: r594361 - /incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp

Author: cctrieloff
Date: Mon Nov 12 16:18:17 2007
New Revision: 594361

URL: http://svn.apache.org/viewvc?rev=594361&view=rev
Log:
- call correct delete []


Modified:
    incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp

Modified: incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp?rev=594361&r1=594360&r2=594361&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp Mon Nov 12 16:18:17 2007
@@ -182,7 +182,7 @@
                  session.execution().sendSyncRequest();
             }
         }
-        delete msgBuf;
+        delete [] msgBuf;
 		
         //Completion compl;
         if (!opts.summary) cout << " done." << endl;