PN5_50494


Patch Number

Ticket Number

Change type

5_50494

744899

Patch

1. Description

The MCXD conversion returns null when the variable to be OCONV'd is the same as the variable to be assigned

2. Previous Release Behavior

PROGRAM mcxd_test
x = '7F'
x = OCONV(x, 'MCXD')   ;* the variable x is both the source and result
CRT 'The decimal value is: ' : DQUOTE(x)

jsh home ~ -->mcxd_test
The decimal value is: ""

3. Current Release Behavior

jsh home ~ -->mcxd_test
The decimal value is: "127"