You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by sc...@apache.org on 2011/04/15 23:20:09 UTC

svn commit: r1092816 - /santuario/xml-security-cpp/trunk/xsec/transformers/TXFMXPathFilter.cpp

Author: scantor
Date: Fri Apr 15 21:20:09 2011
New Revision: 1092816

URL: http://svn.apache.org/viewvc?rev=1092816&view=rev
Log:
https://issues.apache.org/jira/browse/SANTUARIO-268

Modified:
    santuario/xml-security-cpp/trunk/xsec/transformers/TXFMXPathFilter.cpp

Modified: santuario/xml-security-cpp/trunk/xsec/transformers/TXFMXPathFilter.cpp
URL: http://svn.apache.org/viewvc/santuario/xml-security-cpp/trunk/xsec/transformers/TXFMXPathFilter.cpp?rev=1092816&r1=1092815&r2=1092816&view=diff
==============================================================================
--- santuario/xml-security-cpp/trunk/xsec/transformers/TXFMXPathFilter.cpp (original)
+++ santuario/xml-security-cpp/trunk/xsec/transformers/TXFMXPathFilter.cpp Fri Apr 15 21:20:09 2011
@@ -1,5 +1,5 @@
 /*
- * Copyright 2002-2009 The Apache Software Foundation.
+ * Copyright 2002-2011 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -643,7 +643,7 @@ void TXFMXPathFilter::evaluateExprs(DSIG
 
 	DSIGTransformXPathFilter::exprVectorType::iterator i;
 
-	for (i = exprs->begin(); i < exprs->end(); ++i) {
+	for (i = exprs->begin(); i != exprs->end(); ++i) {
 
 		XSECXPathNodeList * lst = evaluateSingleExpr(*i);
 		filterSetHolder * sh;