diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-02-25 10:52:09 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-02-25 12:02:53 +0100 |
commit | 1daf4db9631bea239e6f4403741001a46174383d (patch) | |
tree | cb733cf2023d84be68ef4b130ccb3982c166eb8d /basic | |
parent | 7e45e4bbaf9b6fcee72c255f8f1761620e70d2ba (diff) |
Blind fix for 3ceb01afc3e5f47930e24fb0b21e6e85b86f660e
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')
-rw-r--r-- | basic/source/runtime/dllmgr-x64.cxx | 4 |
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; } |