Modify

Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#3876 closed Bug (Fixed)

Hex Number Arithmetic is incorrect

Reported by: Zvend Owned by: Jon
Milestone: 3.3.16.1 Component: AutoIt
Version: 3.3.16.0 Severity: None
Keywords: Hex Number Arithmetic Cc: Melba23

Description

The hex arithmetic in the newest version broke compared to previous versions.

;~ AutoIt v3.3.14.5
Const $OFFSET = -0x46
Local $pSomePointer = Ptr(0x3100000 + $OFFSET)
ConsoleWrite("Pointer is: " & $pSomePointer & @CRLF)

Output:

Pointer is: 0x030FFFBA (Correct hex arithmetic)
;~ AutoIt v3.3.16.0
Const $OFFSET = -0x46
Local $pSomePointer = Ptr(0x3100000 + $OFFSET)
ConsoleWrite("Pointer is: " & $pSomePointer & @CRLF)

Output:

Pointer is: 0x03100046 (Incorrect hex arithmetic)

For more information see: https://www.autoitscript.com/forum/topic/207897-hex-number-arithmetic-is-incorrect-on-v33160/

Attachments (0)

Change History (7)

comment:1 by J-Paul Mesnage, 4 years ago

Owner: set to J-Paul Mesnage
Status: newassigned

Thanks,
Fix sent to Jon

comment:2 by Zvend, 4 years ago

Hey, just for my information: When will the fix be applied? so i can continue moving my project to the newest autoit version

comment:3 by J-Paul Mesnage, 4 years ago

Hi I cannot answer this question as Jon will do it when It has time
in fact this pb come from a regression introduce by #3772 which will be fix by the fixing of #3869

Sorry for the trouble

Last edited 4 years ago by J-Paul Mesnage (previous) (diff)

comment:4 by anonymous, 4 years ago

Hello,

i found the same problem in all beta versions since 3.3.14.5, you can bypass them by wrote

Const $OFFSET = -(0x46)

Sascha

in reply to:  4 comment:5 by Zbend, 4 years ago

Replying to anonymous:

Hello,

i found the same problem in all beta versions since 3.3.14.5, you can bypass them by wrote

Const $OFFSET = -(0x46)

Sascha

thats only a bypass for hardcoded offsets. If you have functions where you dont know if the output value is supposed to be positive or negative this bypass wont work out. also that "solution" was mentioned in the link i provided

comment:6 by Jon, 4 years ago

Milestone: 3.3.15.6
Owner: changed from J-Paul Mesnage to Jon
Resolution: Fixed
Status: assignedclosed

Fixed by revision [12732] in version: 3.3.15.6

comment:7 by Jon, 4 years ago

Milestone: 3.3.15.63.3.16.1

Fixed by revision [12734] in version: 3.3.16.1

Modify Ticket

Action
as closed The owner will remain Jon.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.