Jump to content

memory leak in my script :(


Recommended Posts

warning, running the script below will cause a memory leak :whistle:

$filehandle = fileopen ("c:\test.txt",2)
FileWriteLine ($filehandle,"text")
fileclose ($filehandle)
while 1
    $filehandle = FileOpen ("c:\test.txt",0)
    while 1
        $line = FileReadLine($filehandle)
        If @error = -1 Then ExitLoop
    WEnd
    fileclose ($filehandle)
wend

i think its caused by the if @error = -1 then exitloop

any ideas on how i could do something similar to this without the memory leak?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...