• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Does overwriting a variable cause leak? {Solved}

Status
Not open for further replies.
Level 4
Joined
Dec 22, 2016
Messages
67
For example if I have a variable named "Point" and every time a unit casts a spell I have an action :
Set Point = position of casting unit

does this cause a leak and I shall use custom script remove location? or each time trigger overwrites it and no memory problems will be created?
 
Level 13
Joined
Mar 24, 2013
Messages
1,105
Yes it does leak.

Set Point = position
// Do Stuff
Destroy it

Now "Point" is ready for next time.

If you do not destroy "Point" but instead overwrite it, it does not lose the data it holds, you simply lose the ability to reference that previous data.
 
Status
Not open for further replies.
Top