This commit is contained in:
parent
28955cea85
commit
48d5f47e73
|
@ -15,7 +15,7 @@ import shlex
|
|||
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
|
||||
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
|
||||
# changes)
|
||||
CLIENT_VERSION = "1.3.14"
|
||||
CLIENT_VERSION = "1.3.15"
|
||||
|
||||
# Timeout for analysis with Cppcheck in seconds
|
||||
CPPCHECK_TIMEOUT = 30 * 60
|
||||
|
@ -340,7 +340,7 @@ def scan_package(work_path, cppcheck_path, jobs, libraries):
|
|||
if 'Child process crashed with signal' in ie_line:
|
||||
sig_file = ie_line.split(':')[0]
|
||||
sig_msg = 'signal '
|
||||
sig_pos = stderr.find(sig_msg)
|
||||
sig_pos = ie_line.find(sig_msg)
|
||||
if sig_pos != -1:
|
||||
sig_start_pos = sig_pos + len(sig_msg)
|
||||
sig_num = int(ie_line[sig_start_pos:ie_line.find(' ', sig_start_pos)])
|
||||
|
|
Loading…
Reference in New Issue