Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Open port crashes View 2.7.6

From: semseddinm::bircom::com at: 28-Jan-2009 18:46

Hi, Following lines crashed View 2.7.6 on WinXP Pro: p: open udp://:9000 close p open p ;crash but following line don't: in9000: open udp://127.0.0.1:9000 close in9000 open in9000 I know on first example I could do; p: open udp://:9000 close p p: open udp://:9000 and it will work, but why the first one crashes while the second does not I wonder? And "open" returns a port! value, so p is a port and open should be able to open p or give an error, right?