﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2317	ObjCreate Memory Leak	IanN1990		"According to the Helpfile. Setting any Object with a number or string is ment to release it from memory.

#NoTrayIcon

While 1
sleep(250)
Make()
WEnd

Func Make()
Local $o_object = ObjCreate(""InternetExplorer.Application"")
$o_object.quit
$o_object = ""String""
EndFunc

As you can see by the code above, the Objcreate is called inside a function. The Object itself is set to a string. So the memory should be released.

Yet if you run the script, along side task-manager. You will see every time the function is called the memory for the autoit script goes up."	Bug	closed		AutoIt	3.3.8.1	None	Works For Me		
