summaryrefslogtreecommitdiff
path: root/basic/source
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2018-02-25 10:52:09 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-02-25 12:02:53 +0100
commit1daf4db9631bea239e6f4403741001a46174383d (patch)
treecb733cf2023d84be68ef4b130ccb3982c166eb8d /basic/source
parent7e45e4bbaf9b6fcee72c255f8f1761620e70d2ba (diff)
Change-Id: I01649065c93de368f900eb836a0467693f361f68 Reviewed-on: https://gerrit.libreoffice.org/50297 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basic/source')
-rw-r--r--basic/source/runtime/dllmgr-x64.cxx4
1 files changed, 2 insertions, 2 deletions
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;
}