﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3596	_ArrayAdd fails to add a specified value at the end of an existing 1D array	Tippex		"At production version 3.3.14.3 _ArrayAdd fails to add a specified value at the end of an existing 1D array.
(no problem at production version 3.3.14.2)

The example below is from AutoIt Help (v3.3.14.3)


{{{
#include <Array.au3>
#include <MsgBoxConstants.au3>

Local $aArray_Base[2] = [""Org Item 0"", ""Org item 1""]
_ArrayDisplay($aArray_Base, ""1D - Base array"")

; Add a single item
Local $aArray = $aArray_Base
Local $sSingleFill = ""New Item 2""
_ArrayAdd($aArray, $sSingleFill)
_ArrayDisplay($aArray, ""1D - Single"")
}}}

""New Item 2"" fails to be added at AutoIt v3.3.14.3 (but there is no such  problem at AutoIt v3.3.14.2)."	Bug	closed		AutoIt	3.3.14.3	None	Duplicate	_ArrayAdd	
