summaryrefslogtreecommitdiff
path: root/src/strongname
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2016-02-01 10:48:17 -0800
committerdotnet-bot <dotnet-bot@microsoft.com>2016-02-01 10:48:17 -0800
commita2cfe7239352d1934037965522fe5dd695873a3e (patch)
treee6ba19fd9a6df1b70dc766ff69b34b860e064001 /src/strongname
parent332bbcdc6226f7d8d63e49fa53d30e1a53839f7f (diff)
downloadcoreclr-a2cfe7239352d1934037965522fe5dd695873a3e.tar.gz
coreclr-a2cfe7239352d1934037965522fe5dd695873a3e.tar.bz2
coreclr-a2cfe7239352d1934037965522fe5dd695873a3e.zip
Fix OACR errors for ProjectK
[tfs-changeset: 1570939]
Diffstat (limited to 'src/strongname')
-rw-r--r--src/strongname/api/strongnamecoreclr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strongname/api/strongnamecoreclr.cpp b/src/strongname/api/strongnamecoreclr.cpp
index 861ca2c635..1b81ff6252 100644
--- a/src/strongname/api/strongnamecoreclr.cpp
+++ b/src/strongname/api/strongnamecoreclr.cpp
@@ -47,7 +47,7 @@ IExecutionEngine * __stdcall SnIEE()
return ApiShim<IEEFn_t>("IEE")();
}
-STDAPI SnGetCorSystemDirectory(LPWSTR pbuffer, DWORD cchBuffer, DWORD* dwLength)
+STDAPI SnGetCorSystemDirectory(_In_z_ LPWSTR pbuffer, DWORD cchBuffer, DWORD* dwLength)
{
typedef HRESULT (__stdcall *GetCorSystemDirectoryFn_t)(LPWSTR, DWORD, DWORD *);
return ApiShim<GetCorSystemDirectoryFn_t>("GetCORSystemDirectory")(pbuffer, cchBuffer, dwLength);