Skip to content

Commit

Permalink
Merge pull request Ericsson#4084 from Szelethus/analyzer_env_crash_fix
Browse files Browse the repository at this point in the history
[context][fix] Use the property instead of the field for analyzer env
  • Loading branch information
dkrupp authored Nov 16, 2023
2 parents 91e289d + fb9aaee commit 006db80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/analyzer_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self):

def __parse_CC_ANALYZER_BIN(self):
env_var_bins = {}
if 'CC_ANALYZER_BIN' in self.__analyzer_env:
if 'CC_ANALYZER_BIN' in self.analyzer_env:
had_error = False
for value in self.__analyzer_env['CC_ANALYZER_BIN'].split(';'):
try:
Expand Down

0 comments on commit 006db80

Please sign in to comment.