- Joined
- Nov 25, 2008
- Messages
- 1,309
Given the code below, is a handle reference leak created?
JASS:
function A takes nothing returns unit
local unit Unit=CreateUnit(Player(0),'hfoo',0,0,0)
call SetUnitMoveSpeed(Unit,522)
return Unit
endfunction