mirror of https://github.com/x64dbg/TitanEngine
- cleared up issue #13
This commit is contained in:
parent
a322cabe19
commit
3bfbece7c1
|
|
@ -292,7 +292,7 @@ bool EngineIsPointedMemoryString(ULONG_PTR PossibleStringPtr)
|
|||
{
|
||||
TestChar = *((BYTE*)PossibleStringPtr);
|
||||
|
||||
if(TestChar < 32 || TestChar > 126)
|
||||
if(TestChar < ' ' || TestChar > '~') //is inside the lower-ascii range
|
||||
{
|
||||
if(TestChar != 0x00)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue