1
0
Fork 0

Decompiler: ignore line number 0

This commit is contained in:
Xuefer 2015-06-14 13:31:26 +08:00
parent f53d355d1a
commit 5810aaf23e
1 changed files with 3 additions and 1 deletions

View File

@ -1608,7 +1608,9 @@ class Decompiler
$res = $op['result'];
$ext = $op['extended_value'];
$currentSourceLine = $op['lineno'];
$EX['value2constant'][$currentSourceLine] = '__LINE__';
if ($currentSourceLine) {
$EX['value2constant'][$currentSourceLine] = '__LINE__';
}
$opname = xcache_get_opcode($opc);