You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
The Nullable Dereference analyzer currently does not handle the case when a null check is performed by passing the result of the null check to a function that aborts execution if the checked parameter was null, for example:
To be able to exactly analyze the above an intraprocedural analysis would be required, so to avoid this false positive the analyzer could just stop analyzing the rest of the control flow after it sees the parameter inside an expression that is passed ot a method.
The text was updated successfully, but these errors were encountered:
llbit
added a commit
to llbit/simplecfg
that referenced
this issue
Aug 4, 2016
The Nullable Dereference analyzer currently does not handle the case when a null check is performed by passing the result of the null check to a function that aborts execution if the checked parameter was null, for example:
To be able to exactly analyze the above an intraprocedural analysis would be required, so to avoid this false positive the analyzer could just stop analyzing the rest of the control flow after it sees the parameter inside an expression that is passed ot a method.
The text was updated successfully, but these errors were encountered: