Use debug trace only if VM is really executing some code.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-09-05 13:16:57 +02:00
parent 765d2cf3eb
commit d58249cb3f
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -1920,7 +1920,7 @@ PH7_PRIVATE sxi32 PH7_VmThrowError(
sxu32 nLine;
SyString sFileName;
SyString *pFile;
if((VmExtractDebugTrace(&(*pVm), &pDebug) == SXRET_OK) && (SySetUsed(&pDebug) > 0)) {
if((pVm->nMagic == PH7_VM_EXEC) && (VmExtractDebugTrace(&(*pVm), &pDebug) == SXRET_OK) && (SySetUsed(&pDebug) > 0)) {
/* Extract file name and line number from debug trace */
SySetGetNextEntry(&pDebug, (void **)&pTrace);
pFile = pTrace->pFile;