diff options
| author | Daniel Schemmel <daniel@schemmel.net> | 2023-10-29 16:00:02 +0000 |
|---|---|---|
| committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2024-01-30 21:40:32 +0000 |
| commit | 3ca81c2dc3881aec0bbf94646c73a148d706c76d (patch) | |
| tree | 27852ee64e2148b2225f7d4dfd4e33b244be4cfd /lib/Core/Executor.cpp | |
| parent | f813c88c8cb868fc9c0be78fbf92a94d72ac02b0 (diff) | |
| download | klee-3ca81c2dc3881aec0bbf94646c73a148d706c76d.tar.gz | |
Change `GetConstraintLog` to work with `std::string`s instead of `char*`s
Diffstat (limited to 'lib/Core/Executor.cpp')
| -rw-r--r-- | lib/Core/Executor.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 49df9790..eccdf9eb 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -4734,9 +4734,7 @@ void Executor::getConstraintLog(const ExecutionState &state, std::string &res, switch (logFormat) { case STP: { Query query(state.constraints, ConstantExpr::alloc(0, Expr::Bool)); - char *log = solver->getConstraintLog(query); - res = std::string(log); - free(log); + res = solver->getConstraintLog(query); } break; case KQUERY: { |
