You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by rl...@apache.org on 2020/04/11 19:22:05 UTC

[xalan-c] branch master updated: XALANC-794: XalanTransform transforms input rather than copying it

This is an automated email from the ASF dual-hosted git repository.

rleigh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/xalan-c.git


The following commit(s) were added to refs/heads/master by this push:
     new b581a0a  XALANC-794: XalanTransform transforms input rather than copying it
     new a22a1ca  Merge pull request #14 from rleigh-codelibre/XALANC-794_XalanTransform_transform
b581a0a is described below

commit b581a0a760c56d4018ca8342a53ac9e2d65a154c
Author: Roger Leigh <rl...@codelibre.net>
AuthorDate: Sat Apr 11 20:11:25 2020 +0100

    XALANC-794: XalanTransform transforms input rather than copying it
---
 src/xalanc/PlatformSupport/DOMStringHelper.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xalanc/PlatformSupport/DOMStringHelper.hpp b/src/xalanc/PlatformSupport/DOMStringHelper.hpp
index c52b431..5abe1e6 100644
--- a/src/xalanc/PlatformSupport/DOMStringHelper.hpp
+++ b/src/xalanc/PlatformSupport/DOMStringHelper.hpp
@@ -81,7 +81,7 @@ XalanTransform(
             OutputIteratorType  iterator,
             UnaryFunction       function)
 {
-    return std::transform(begin, end, iterator);
+    return std::transform(begin, end, iterator, function);
 }
 
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xalan.apache.org
For additional commands, e-mail: commits-help@xalan.apache.org