Consequences of Reverse Engineering
Here's one recent example of a significant bug.
The code said A is not NULL OrElse A != " ", which doesn't do anything useful. If A has non-NULL data, this is true. The second part of the clause (A != " ") is only evaluated if A is NULL. If A is NULL, no other …
more ...