Its a simple question,
in functions one does "d" leak
If i clean "d" in function two will it still work in function one and not leak?
JASS:
function one takes dialog d returns nothing
//actions
endfunction
function two takes nothing returns nothing
local dialog d = DialogCreate()
endfunction
If i clean "d" in function two will it still work in function one and not leak?