diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 10:36:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 19:29:54 +0200 |
commit | d010358198c69c32a32cdcf0dd802fbc47556391 (patch) | |
tree | e9675b62a26970aa6e4429a3428d1d9779daac4e /extensions | |
parent | 25a23b9b72d3ea794b63b52286954b58c95c2efd (diff) |
Silence -Werror,-Wmissing-field-initializers (clang-cl)
Change-Id: I4c6a820a91f620e9677f6a946265c38e9ca6ef73
Reviewed-on: https://gerrit.libreoffice.org/79933
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/scanner/scanwin.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/extensions/source/scanner/scanwin.cxx b/extensions/source/scanner/scanwin.cxx index 11e2e7345df4..48b2c78bd90e 100644 --- a/extensions/source/scanner/scanwin.cxx +++ b/extensions/source/scanner/scanwin.cxx @@ -17,6 +17,10 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <cstring> + #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/frame/Desktop.hpp> @@ -261,7 +265,9 @@ void Twain::ShimListenerThread::execute() // We need a WinAPI HANDLE of the process to be able to wait on it and detect the process // termination; so use WinAPI to start the process, not osl_executeProcess. - STARTUPINFOW si{ sizeof(si) }; // null-initialize all but cb + STARTUPINFOW si; + std::memset(&si, 0, sizeof si); + si.cb = sizeof(STARTUPINFOW); PROCESS_INFORMATION pi; if (!CreateProcessW(nullptr, const_cast<LPWSTR>(o3tl::toW(sCmdLine.getStr())), nullptr, |