scan-build changes

This reverts commit e86027f825.
This commit is contained in:
Scott Fennell
2018-11-06 11:23:12 -06:00
parent e86027f825
commit 21c01a5454
35 changed files with 226 additions and 148 deletions

View File

@ -207,12 +207,13 @@ int Trick::JITInputFile::run(std::string file_name , std::string run_function )
if ( call_me == NULL ) {
std::string error_message = "JITInputfile could not find function " + run_function ;
exec_terminate_with_return(-1 , __FILE__ , __LINE__ , error_message.c_str() ) ;
}
} else {
// We found the function, call it!
ret = (*call_me)() ;
return ret ;
}
}
/**