Added SECURITY.md
This commit is contained in:
parent
7462c60cfd
commit
eacc857143
|
@ -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.
|
||||||
|
|
|
@ -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; } );
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue