benchmark.udp-echo0: Fix the memory leak.

Doug Coleman 2011-11-11 17:58:45 -08:00
parent 27bb6ebaff
commit 0bbb7f6012
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ IN: benchmark.udp-echo0
: udp-echo ( #times #bytes -- )
'[
_ iota [ _ >be ] map
"127.0.0.1" 0 <inet4> <datagram>
"127.0.0.1" 0 <inet4> <datagram>
"127.0.0.1" 0 <inet4> <datagram> &dispose
"127.0.0.1" 0 <inet4> <datagram> &dispose
[ send/recv ] 2curry each
] with-destructors ;