Modify

Opened 3 weeks ago

Closed 3 weeks ago

#4052 closed Bug (Fixed)

_FileListToArrayRec has a bug after update to version 3.3.18.0

Reported by: anonymous Owned by: Jpm
Milestone: 3.3.19.0 Component: AutoIt
Version: 3.3.14.0 Severity: None
Keywords: Cc:

Description

It affects the function if $FLTAR_NOLINK is used. It returns nothing.

The new version has this line:

Local $tFile_Data = DllStructCreate($tagWIN32_FIND_DATA)

The old tag variable name was "FileName", the tagWIN32_FIND_DATA has "cFileName", but in the function, "FileName" is not changed.

This line: $sName = DllStructGetData($tFile_Data, "FileName")
Should become: $sName = DllStructGetData($tFile_Data, "cFileName")

Also the old tag variable was "FileAttributes", the new tag has "dwFileAttributes", but it is not changed.

This line: $sName = DllStructGetData($tFile_Data, "FileAttributes")
Should become: $sName = DllStructGetData($tFile_Data, "dwFileAttributes")

Attachments (0)

Change History (2)

comment:1 Changed 3 weeks ago by Factfinder

The version is 3.3.18.0
Reported by: Factfinder

comment:2 Changed 3 weeks ago by Jpm

  • Milestone set to 3.3.19.0
  • Owner set to Jpm
  • Resolution set to Fixed
  • Status changed from new to closed

Fixed by revision [13171] in version: 3.3.19.0

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The owner will remain Jpm.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.