mirror of https://github.com/x64dbg/zydis
				
				
				
			Merge branch 'develop' into c_bindings
This commit is contained in:
		
						commit
						9d5e02ebcb
					
				| 
						 | 
					@ -34,6 +34,8 @@
 | 
				
			||||||
#include <cstdarg>
 | 
					#include <cstdarg>
 | 
				
			||||||
#include <cctype>
 | 
					#include <cctype>
 | 
				
			||||||
#include <cstring>
 | 
					#include <cstring>
 | 
				
			||||||
 | 
					#include <cstdio>
 | 
				
			||||||
 | 
					#include <string>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace Verteron
 | 
					namespace Verteron
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					@ -622,7 +624,7 @@ const char* VXExactSymbolResolver::resolveSymbol(const VXInstructionInfo &info,
 | 
				
			||||||
    uint64_t &offset)
 | 
					    uint64_t &offset)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    std::unordered_map<uint64_t, std::string>::const_iterator iterator = m_symbolMap.find(address);
 | 
					    std::unordered_map<uint64_t, std::string>::const_iterator iterator = m_symbolMap.find(address);
 | 
				
			||||||
    if (iterator != m_symbolMap.end())
 | 
					    if (iterator != m_symbolMap.cend())
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        offset = 0;
 | 
					        offset = 0;
 | 
				
			||||||
        return iterator->second.c_str();
 | 
					        return iterator->second.c_str();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue