I have a buffer thats allocated as Local in a procedure...now will I have to free that buffer every time or will it be smart enough for me? Not so much exiting the program as finishing the procedure.
Thanks
(Again, apologies for my other thread. I was still stuck in java mode)
Hi Maeser, "local" vars are created on the stack, so after that procedure exits, further stack operations just overwrite that data as needed. It truly is treated as local data. :)
Sweet. :D Thanks a lot