cppcheckdata.py: parsing of NULL pointers from VS 32-bit and 64-bit

This commit is contained in:
Daniel Marjamäki 2017-10-07 22:44:35 +02:00
parent 6ff8849419
commit 773cc07d44
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ class Configuration:
for values in element:
self.valueflow.append(ValueFlow(values))
IdMap = {None: None, '0': None}
IdMap = {None: None, '0': None, '00000000': None, '0000000000000000': None}
for token in self.tokenlist:
IdMap[token.Id] = token
for scope in self.scopes: