Kaydet (Commit) 19bfe765 authored tarafından Michael Stahl's avatar Michael Stahl

shell: warning C4996 function call with parameters that may be unsafe

Change-Id: Id70289b0c88dd203cac6301303fe7452088f60f9
üst a6393819
...@@ -289,7 +289,7 @@ HRESULT STDMETHODCALLTYPE CInfoTip::GetInfoTip(DWORD /*dwFlags*/, wchar_t** ppws ...@@ -289,7 +289,7 @@ HRESULT STDMETHODCALLTYPE CInfoTip::GetInfoTip(DWORD /*dwFlags*/, wchar_t** ppws
ZeroMemory(pMem, len); ZeroMemory(pMem, len);
msg.copy(pMem,msg.length()); wcscpy_s(pMem, msg.length(), msg.c_str());
*ppwszTip = pMem; *ppwszTip = pMem;
lpMalloc->Release(); lpMalloc->Release();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment