Skip to content

Commit

Permalink
undo fbi fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewQuijano committed Aug 27, 2024
1 parent 76f479c commit 3a0d5d7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tools/fbi/src/find_bug_inj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,6 @@ void update_unique_taint_sets(Json::Value& tquls) {

bool is_header_file(std::string filename) {
uint32_t l = filename.length();
if (l < 2) {
// Can occur with files like '9', so we just skip them.
return true;
}
return (filename[l-2] == '.' && filename[l-1] == 'h');
}

Expand Down

0 comments on commit 3a0d5d7

Please sign in to comment.