basic/source/runtime/dllmgr-x64.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 1daf4db9631bea239e6f4403741001a46174383d Author: Julien Nabet <[email protected]> Date: Sun Feb 25 10:52:09 2018 +0100 Blind fix for 3ceb01afc3e5f47930e24fb0b21e6e85b86f660e Change-Id: I01649065c93de368f900eb836a0467693f361f68 Reviewed-on: https://gerrit.libreoffice.org/50297 Tested-by: Jenkins <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/basic/source/runtime/dllmgr-x64.cxx b/basic/source/runtime/dllmgr-x64.cxx index bb47a0d96aeb..7933f0a044c8 100644 --- a/basic/source/runtime/dllmgr-x64.cxx +++ b/basic/source/runtime/dllmgr-x64.cxx @@ -607,9 +607,9 @@ ErrCode call( { unmarshal(elem.variable, elem.buffer); } - for (auto const& unmarshalString : data.unmarshalStrings) + for (auto const& elem : data.unmarshalStrings) { - ErrCode e = unmarshalString(unmarshalString, result); + ErrCode e = unmarshalString(elem, result); if (e != ERRCODE_NONE) { return e; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
