diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2020-09-05 19:59:17 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-10-12 11:19:24 +0100 |
commit | 86b784494cabd7ac8db1d02700a0d7be9ebd5351 (patch) | |
tree | 7e96641ba23bf98e1d609bfeaaed6fa0798c59cb /lib/Core/ExecutionState.cpp | |
parent | b157b068e27b5cdb389a63230c4d2be20f94e3f7 (diff) | |
download | klee-86b784494cabd7ac8db1d02700a0d7be9ebd5351.tar.gz |
address MartinNowack's remaining feedback
Diffstat (limited to 'lib/Core/ExecutionState.cpp')
-rw-r--r-- | lib/Core/ExecutionState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/ExecutionState.cpp b/lib/Core/ExecutionState.cpp index 9004d706..62376db6 100644 --- a/lib/Core/ExecutionState.cpp +++ b/lib/Core/ExecutionState.cpp @@ -107,7 +107,7 @@ ExecutionState::ExecutionState(const ExecutionState& state): steppedInstructions(state.steppedInstructions), instsSinceCovNew(state.instsSinceCovNew), unwindingInformation(state.unwindingInformation - ? state.unwindingInformation->cloned() + ? state.unwindingInformation->clone() : nullptr), coveredNew(state.coveredNew), forkDisabled(state.forkDisabled) { |