Advertisement
kolton

Untitled

May 23rd, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. crash
  2. function CopyDataEvent(mode, msg) {
  3. if (msg) {
  4. return;
  5. }
  6. }
  7.  
  8. no crash
  9. function CopyDataEvent(mode, msg) {
  10. var msg2 = msg;
  11.  
  12. if (msg2) {
  13. return;
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement