Is there any harm for using a GOTO statement to jump down only ? Or are we totally safe ?
What I mean by that is think this as my code,
Some code ...
...
GOTO whereToJump
Some code ...
...
whereToJump:
Some code ...
When whereToJump point is always below the GOTO statement, is there any security issues?