if (ddl.SelectedValue != "")
After using Fortify to analyze my code, Fortify show me a vulnerability which is "Null Dereference".
How can i resolve this issue?
if (ddl.SelectedValue != "")
After using Fortify to analyze my code, Fortify show me a vulnerability which is "Null Dereference".
How can i resolve this issue?
Assuming
ddl
can never be null:Otherwise: