• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[JASS] [Ask] Memory Leak control

Status
Not open for further replies.
Level 12
Joined
Aug 7, 2004
Messages
875
Hi guys,

In my code I did alot of nullifying with object parameters - however I don't understand why still there's a memory leak in my code. So I have a very simple question.

Do group and location parameters need to be destroyed after code is executed instead of nullifying them?
 
Level 40
Joined
Dec 14, 2005
Messages
10,532
They need to be destroyed, then nulled.

Eg;

JASS:
//no leak
local location l = Location(0,0)
call RemoveLocation(l)
set l = null

//leak, very tiny though
local location l = Location(0,0)
call RemoveLocation(l)

//leak, pretty big
local location l = Location(0,0)
set l = null

//leak, big
local location l = Location(0,0)
 
Status
Not open for further replies.
Top