[Libreoffice-commits] core.git: basic/source

Julien Nabet serval2412 at yahoo.fr
Sun Feb 25 11:03:13 UTC 2018


 basic/source/runtime/dllmgr-x64.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1daf4db9631bea239e6f4403741001a46174383d
Author: Julien Nabet <serval2412 at yahoo.fr>
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 <ci at libreoffice.org>
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

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;
         }


More information about the Libreoffice-commits mailing list