Hi Guys,
Say I have a string private in memory and I do
private = private + more_private
Now I wan't to make sure that I overwrite every instance with crap.
My thoughts:
1. Do it in ASM get adress and erase private and more_private
2. Do the same with a pointer
But the real quest is what happens when i do private = private +
Do I have 2 strings or what?
Say I have a string private in memory and I do
private = private + more_private
Now I wan't to make sure that I overwrite every instance with crap.
My thoughts:
1. Do it in ASM get adress and erase private and more_private
2. Do the same with a pointer
But the real quest is what happens when i do private = private +
Do I have 2 strings or what?
Comment