summaryrefslogtreecommitdiff
path: root/src/vm/zapsig.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-03-17 07:32:03 -0700
committerJan Kotas <jkotas@microsoft.com>2015-03-17 07:32:03 -0700
commite9ddb2e5667120f27d92e38f391e7d74ebf5a9f8 (patch)
tree93a8469e1cb02aef602d688b363182ccc2786d44 /src/vm/zapsig.cpp
parent89909d343e63707c326f2f1422c6c5dc87a30d82 (diff)
downloadcoreclr-e9ddb2e5667120f27d92e38f391e7d74ebf5a9f8.tar.gz
coreclr-e9ddb2e5667120f27d92e38f391e7d74ebf5a9f8.tar.bz2
coreclr-e9ddb2e5667120f27d92e38f391e7d74ebf5a9f8.zip
Fix some of the issues found by Viva64 static analyser
Diffstat (limited to 'src/vm/zapsig.cpp')
-rw-r--r--src/vm/zapsig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/zapsig.cpp b/src/vm/zapsig.cpp
index 7560958256..a0146aeb7d 100644
--- a/src/vm/zapsig.cpp
+++ b/src/vm/zapsig.cpp
@@ -169,7 +169,7 @@ BOOL ZapSig::GetSignatureForTypeHandle(TypeHandle handle,
// Can we encode the type using a short ET encoding?
//
- CorElementType elemType = elemType = TryEncodeUsingShortcut(pMT);
+ CorElementType elemType = TryEncodeUsingShortcut(pMT);
if (elemType != ELEMENT_TYPE_END)
{
_ASSERTE(pMT->IsTypicalTypeDefinition());