Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Mar 21, 2024
2 parents 8f8e1e3 + d1199dc commit 411fdff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/utils/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,9 @@ namespace detail {
}

inline void file_deleter(std::FILE* ptr) {
fclose(ptr);
if(ptr) {
fclose(ptr);
}
}
}
}
Expand Down

0 comments on commit 411fdff

Please sign in to comment.