Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


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 Tippex
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 anonymous
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:

Problem Event Name: APPCRASH Application Name: autoit3.exe Application Version: 3.3.14.2 Application Timestamp: 55fc1979 Fault Module Name: autoit3.exe Fault Module Version: 3.3.14.2 Fault Module Timestamp: 55fc1979 Exception Code: c0000005 Exception Offset: 00004d46 OS Version: 6.1.7601.2.1.0.256.48 Locale ID: 1033 Additional Information 1: 0a9e Additional Information 2: 0a9e372d3b4ad19135b953a78882e789 Additional Information 3: 0a9e Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

Wrapper info:

"C:\Program Files (x86)\AutoIt3\SciTE\..\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /run /prod /ErrorStdOut /in "E:\New folder\Encoded_7TMF.au3" /UserParams

+>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

Running AU3Check (3.3.14.2) from:C:\Program Files (x86)\AutoIt3 input:E:\New folder\Encoded_7TMF.au3

+>06:52:19 AU3Check ended.rc:0

Running:(3.3.14.2):C:\Program Files (x86)\AutoIt3\autoit3.exe "E:\New folder\Encoded_7TMF.au3"

--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop !>06:52:21 AutoIt3.exe ended.rc:-1073741819 +>06:52:21 AutoIt3Wrapper Finished.

Exit code: 3221225477 Time: 1.893

#3594 Fixed Error in FTPEx.au3, Autoit version 3.3.14.13 mochi82@…
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)

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.