Skip to content

Commit

Permalink
fix(profiler): add memory initilization for AccessInfo default constr.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed May 16, 2024
1 parent e37d3a4 commit adfe04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtlib/iFunctionsTypes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ struct AccessInfo {
: isRead(isRead), lid(lid), var(var), AAvar(AAvar), addr(addr),
skip(skip) {}

AccessInfo() : lid(0) {}
AccessInfo() : isRead(false), lid(0), var(""), AAvar(""), addr(0), skip(false) {}

bool isRead;
// hybrid analysis
Expand Down

0 comments on commit adfe04d

Please sign in to comment.