summaryrefslogtreecommitdiff
path: root/src/inc/clr
diff options
context:
space:
mode:
authorRahul Kumar <rahku@microsoft.com>2015-09-25 14:03:54 -0700
committerMatt Ellis <matell@microsoft.com>2015-09-25 17:24:02 -0700
commit6ac3cef4e3b82b3b9fbbce50a4a762e576464634 (patch)
treee4740ff710922047a7359b0927274988ef14c052 /src/inc/clr
parentf0c1382fd5c65e44585b84a4bf3dd8ec86d73c6c (diff)
downloadcoreclr-6ac3cef4e3b82b3b9fbbce50a4a762e576464634.tar.gz
coreclr-6ac3cef4e3b82b3b9fbbce50a4a762e576464634.tar.bz2
coreclr-6ac3cef4e3b82b3b9fbbce50a4a762e576464634.zip
Fix for 134453: fix prefast warnings
[tfs-changeset: 1529946]
Diffstat (limited to 'src/inc/clr')
-rw-r--r--src/inc/clr/fs/path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inc/clr/fs/path.h b/src/inc/clr/fs/path.h
index 29a70f7260..e90b3188ed 100644
--- a/src/inc/clr/fs/path.h
+++ b/src/inc/clr/fs/path.h
@@ -92,7 +92,7 @@ namespace clr
// result is placed in wzBuffer and the number of chars written is placed in pcchBuffer on
// success; otherwise an error HRESULT is returned.
static HRESULT
- Combine(LPCWSTR wzPathLeft, LPCWSTR wzPathRight, __out DWORD *pcchBuffer, __out_ecount(*pcchBuffer) LPWSTR wzBuffer)
+ Combine(LPCWSTR wzPathLeft, LPCWSTR wzPathRight, __in DWORD *pcchBuffer, __out_ecount(*pcchBuffer) LPWSTR wzBuffer)
{
STATIC_CONTRACT_NOTHROW;