mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-26 01:15:16 +00:00
Fix: OOB(linear buffer overflow) write fixed
This commit is contained in:
parent
0ef4883630
commit
f77e99001b
7 changed files with 38 additions and 27 deletions
|
|
@ -172,10 +172,10 @@ ScriptEngineCreateSymbolTableForDisassemblerWrapper(void * CallbackFunction)
|
|||
* @return BOOLEAN
|
||||
*/
|
||||
BOOLEAN
|
||||
ScriptEngineConvertFileToPdbPathWrapper(const char * LocalFilePath, char * ResultPath)
|
||||
ScriptEngineConvertFileToPdbPathWrapper(const char * LocalFilePath, char * ResultPath, size_t ResultPathSize)
|
||||
|
||||
{
|
||||
return ScriptEngineConvertFileToPdbPath(LocalFilePath, ResultPath);
|
||||
return ScriptEngineConvertFileToPdbPath(LocalFilePath, ResultPath, ResultPathSize);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue