Fix property name length
authorIgor Kulaychuk <i.kulaychuk@samsung.com>
Tue, 11 Jul 2017 22:16:11 +0000 (01:16 +0300)
committerIgor Kulaychuk <i.kulaychuk@samsung.com>
Mon, 13 Nov 2017 19:22:40 +0000 (22:22 +0300)
src/debug/debugger/valuewalk.cpp

index 3c2d988..236f307 100644 (file)
@@ -316,7 +316,7 @@ static HRESULT WalkMembers(ICorDebugValue *pInputValue, ICorDebugILFrame *pILFra
             if (FAILED(pMD->GetMethodProps(mdGetter, NULL, NULL, 0, NULL, &getterAttr, NULL, NULL, NULL, NULL)))
                 continue;
 
-            std::string name = to_utf8(propertyName, propertyNameLen);
+            std::string name = to_utf8(propertyName/*, propertyNameLen*/);
 
             if (backedProperies.find(name) != backedProperies.end())
                 continue;