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
object o = null;
try
{
o = new object();
// do something
}
catch
{
o = new object();
}
return o.ToString(); // FP is detected
TIP: The CFG has connection between the beginning of the try block and its end for the cases when a potential exception is not caught. However, catch or catch(Exception) will catch all exceptions, meaning that the connection is not needed in this case.
The text was updated successfully, but these errors were encountered:
TIP: The CFG has connection between the beginning of the try block and its end for the cases when a potential exception is not caught. However, catch or catch(Exception) will catch all exceptions, meaning that the connection is not needed in this case.
The text was updated successfully, but these errors were encountered: