From 71e5b1ba256bd472e99118c1730fa89cc2b64dbd Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Thu, 15 May 2014 16:55:58 +0200 Subject: Related: #i124896# Remove Allocator from sal, too Change-Id: I3b1c7ccb523232433421def6622e2fc75348ec5f --- sal/osl/w32/module.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sal') diff --git a/sal/osl/w32/module.cxx b/sal/osl/w32/module.cxx index 0fd486cfdda9..86a8c4be0816 100644 --- a/sal/osl/w32/module.cxx +++ b/sal/osl/w32/module.cxx @@ -69,7 +69,7 @@ oslModule SAL_CALL osl_loadModule(rtl_uString *strModuleName, sal_Int32 /*nRtldM //on Windows XP and ERROR_INSUFFICIENT_BUFFER on Windows 7 (64bit) if (h == NULL && Module->length > 260) { - std::vector > vec(Module->length + 1); + std::vector vec(Module->length + 1); DWORD len = GetShortPathNameW(reinterpret_cast(Module->buffer), reinterpret_cast(&vec[0]), Module->length + 1); if (len ) -- cgit