I came across a similar issue that other coders might want to be aware of (although it's pretty obvious if you encounter it): switch statements appear to be missing their break statements. So not only the matching case is executed, but all subsequent cases as well. In some cases this might be intentional, but I've seen some functions malfunction for this reason.
|