Commit bdb87c17 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Was spuriously failing rewrites by not marking them as succeeded

parent 35d4ed66
...@@ -1912,6 +1912,8 @@ extern "C" Box* callattrInternal(Box* obj, const std::string* attr, LookupScope ...@@ -1912,6 +1912,8 @@ extern "C" Box* callattrInternal(Box* obj, const std::string* attr, LookupScope
} }
if (val == NULL) { if (val == NULL) {
if (rewrite_args)
rewrite_args->out_success = true;
return val; return val;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment