Added SECURITY.md

This commit is contained in:
Markus Gans 2021-05-15 12:29:58 +02:00
parent 7462c60cfd
commit eacc857143
2 changed files with 13 additions and 1 deletions

12
SECURITY.md Normal file
View File

@ -0,0 +1,12 @@
# Security policy
## Dealing with security vulnerabilities
There is no separate process for handling security vulnerabilities in FINAL CUT. Security vulnerabilities are fixed and published like all other bugs. Nevertheless, from the moment they are brought to our attention, we try to close them as soon as possible.
## Reporting a security vulnerability
Preferably report a vulnerability via email to "guru.mail" + "@" + "muenster.de" or open an issue in the GitHub repository, the latter meaning that you made the vulnerability public before it was fixed.
If you already have a solution for the security problem, please submit a pull request.

View File

@ -62,7 +62,7 @@ bool isInFWidgetList (const FWidget::FWidgetList* list, const FWidget* obj)
return false; return false;
return std::any_of ( list->begin(), list->end() return std::any_of ( list->begin(), list->end()
, [&obj] (FWidget* w) { return w == obj; } ); , [&obj] (const FWidget* w) { return w == obj; } );
} }
//---------------------------------------------------------------------- //----------------------------------------------------------------------