Author: tabish
Date: Tue May 27 11:29:14 2008
New Revision: 660635
URL: http://svn.apache.org/viewvc?rev=660635&view=rev
Log:
Adding in missing call to va_end()
Modified:
activemq/activemq-cpp/trunk/src/main/decaf/lang/Exception.cpp
Modified: activemq/activemq-cpp/trunk/src/main/decaf/lang/Exception.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/decaf/lang/Exception.cpp?rev=660635&r1=660634&r2=660635&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/decaf/lang/Exception.cpp (original)
+++ activemq/activemq-cpp/trunk/src/main/decaf/lang/Exception.cpp Tue May 27
11:29:14 2008
@@ -43,6 +43,7 @@
va_list vargs;
va_start( vargs, msg ) ;
buildMessage( msg, vargs );
+ va_end( vargs );
// Set the first mark for this exception.
setMark( file, lineNumber );