summaryrefslogtreecommitdiff
path: root/src/analysis/walkitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/walkitem.h')
-rw-r--r--src/analysis/walkitem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/walkitem.h b/src/analysis/walkitem.h
index dc69151..8fc52b6 100644
--- a/src/analysis/walkitem.h
+++ b/src/analysis/walkitem.h
@@ -31,7 +31,7 @@ typedef std::map<std::string, std::string> StringMap;
struct WalkItem
{
WalkItem() :
- checkNullVars(),
+ needCheckNullVars(),
knownVars(),
removeNullVars(),
addNullVars(),
@@ -47,7 +47,7 @@ struct WalkItem
}
WalkItem(const WalkItem &item) :
- checkNullVars(item.checkNullVars),
+ needCheckNullVars(item.needCheckNullVars),
knownVars(item.knownVars),
removeNullVars(item.removeNullVars),
addNullVars(item.addNullVars),
@@ -62,7 +62,7 @@ struct WalkItem
{
}
- StringSet checkNullVars; // need check for usage without null pointer check
+ StringSet needCheckNullVars; // need check for usage without null pointer check
StringSet knownVars; // vars already checked for null pointer
StringSet removeNullVars; // need remove vars from parent checkNullVars
StringSet addNullVars; // need add vars to parent checkNullVars