Custom Query (3927 matches)
Results (391 - 393 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3596 | Duplicate | _ArrayAdd fails to add a specified value at the end of an existing 1D array | ||
| Description |
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). |
|||
| #3595 | No Bug | Call("Ubound", $array) crashes if $array is empty | ||
| Description |
Global $aNumbers[3] = [3, 5, 6]
Global $aEmpty[0]
$i = Call("Ubound", $aNumbers);//Works on non-empty arrays
MsgBox(0, '1st array', $i)
$j = Call("Ubound", $aEmpty);//Crashes when array is empty instead of returning 0
Problem signature:
Wrapper info:
+>06:52:19 Starting AutoIt3Wrapper v.15.920.938.0 SciTE v.3.6.0.0 Keyboard:00000409 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64 Environment(Language:0409) +> SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE UserDir => C:\Users\X\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper SCITE_USERHOME => C:\Users\X\AppData\Local\AutoIt v3\SciTE
+>06:52:19 AU3Check ended.rc:0
--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop !>06:52:21 AutoIt3.exe ended.rc:-1073741819 +>06:52:21 AutoIt3Wrapper Finished.
|
|||
| #3594 | Fixed | Error in FTPEx.au3, Autoit version 3.3.14.13 | ||
| Description |
This error does not exist in 3.3.14.0, haven't checked with intermediate versions. Line 351 (File "C:\program files\Autoit3\Include\FTPEx.au3) Return _WinAPI_MakeQWord($ai_FTPGetFileSize[0],$ai_FTPGetFileSize[2]) Return ERROR Error: Unknown function name. Code that causes it is for example : $ftpfilesize =_FTP_FileGetSize ($myFTPconn, $myftpfile) |
|||
