You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the following log output, we can see that the getEndLoc() component of the DEBUG statement below refers to line 0, column 0, which results in an abort, due to improper length calculation from file offset.
DEBUG: obtained statement location: /workspace/source/catalog.c@2157:4::0:0
terminate called after throwing an instance of 'std::length_error'
what(): basic_string::_M_create
/opt/kaskara/scripts/kaskara-statement-finder: line 5: 58 Aborted (core dumped) /opt/kaskara/bin/kaskara-statement-finder "$@"
With the location information above, we can see that the length calculation on ./lib/kaskara/clang/backend/src/util.cpp @ 61 would be negative.
From the following log output, we can see that the
getEndLoc()
component of the DEBUG statement below refers to line 0, column 0, which results in an abort, due to improper length calculation from file offset.With the location information above, we can see that the
length
calculation on./lib/kaskara/clang/backend/src/util.cpp @ 61
would be negative.The text was updated successfully, but these errors were encountered: