summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Mitchell <mmitche@microsoft.com>2015-02-04 17:23:22 +0000
committerMatt Mitchell <mmitche@microsoft.com>2015-02-04 17:23:22 +0000
commitfea1d198deccae8864a3037d5a6975895aa5779f (patch)
treecbc95bb524d5cbad9cf94a736606424ccafeb79c /src
parent682df95bf810fdbe73b8c4a31ec72f0a703df9bd (diff)
parent4f030f4c6b7dbc3e810b6db3921b775ddadd052d (diff)
downloadcoreclr-fea1d198deccae8864a3037d5a6975895aa5779f.tar.gz
coreclr-fea1d198deccae8864a3037d5a6975895aa5779f.tar.bz2
coreclr-fea1d198deccae8864a3037d5a6975895aa5779f.zip
Merge pull request #56 from maksqwe/fix_get_jit_manager_list
Fix "pNeeded" increment in GetJitManagerList()
Diffstat (limited to 'src')
-rw-r--r--src/debug/daccess/request.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/daccess/request.cpp b/src/debug/daccess/request.cpp
index 49432f83cd..f1fe926bc4 100644
--- a/src/debug/daccess/request.cpp
+++ b/src/debug/daccess/request.cpp
@@ -446,7 +446,7 @@ ClrDataAccess::GetJitManagerList(unsigned int count, struct DacpJitManagerInfo m
{
*pNeeded = 1;
#ifdef FEATURE_PREJIT
- *pNeeded++;
+ (*pNeeded)++;
#endif
}