﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2955	Using Is### breaks Maps passed ByRef	anonymous	Jon	"Depending on various things, some map values can be broken

Shortest working example i got:

{{{
#AutoIt3Wrapper_Version=Beta
#include <Debug.au3>

WTF() ; works, if outside of func
MsgBox(0, Default, ""Yep!"")

Func WTF()
	Local $MAP[]
	$MAP[""mod""] = ""Mod""
	$MAP[""more""] = ""More actions""
	$MAP[""delete""] = ""Delete""

	Local $sTest1 = $MAP[""more""] ; after this $Map[""more""] is Null
	Local $sTest2 = $MAP[""more""]
	_Assert(""$sTest1 == $sTest2"") ; Assertion Failed
EndFunc
}}}
"	Bug	closed	3.3.15.3	AutoIt	3.3.13.19	None	Fixed		
