You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm submitting a bug report I'm submitting a feature request
Library Version:3.2.0.0
Please tell us about your environment:
Operating System: Windows 10 & 11
Current behavior:
Public Function HEX_To_BigNumber_2(ByRef decimalDataArr() As Byte) As String
Dim decArrPrefix00() As Byte, ls_NumVal As String
On Error GoTo error_trap
ls_NumVal = NewBigInteger(decimalDataArr).ToString()
HEX_To_BigNumber_2= ls_NumVal
Exit Function
error_trap:
HEX_To_BigNumber_2= "0"
End Function
During start program calls NewBigInteger(decimalDataArr).ToString() and everything seems fine.
But when the app is terminated some time later it crashes instead of closing gracefully. If the line:
ls_NumVal = NewBigInteger(decimalDataArr).ToString()
is replaced by:
ls_NumVal = "0"
app closes quietly (no error, no crash).
The text was updated successfully, but these errors were encountered:
I'm submitting a bug report I'm submitting a feature request
Please tell us about your environment:
Current behavior:
Public Function HEX_To_BigNumber_2(ByRef decimalDataArr() As Byte) As String
Dim decArrPrefix00() As Byte, ls_NumVal As String
On Error GoTo error_trap
ls_NumVal = NewBigInteger(decimalDataArr).ToString()
HEX_To_BigNumber_2= ls_NumVal
Exit Function
error_trap:
HEX_To_BigNumber_2= "0"
End Function
During start program calls NewBigInteger(decimalDataArr).ToString() and everything seems fine.
But when the app is terminated some time later it crashes instead of closing gracefully. If the line:
ls_NumVal = NewBigInteger(decimalDataArr).ToString()
is replaced by:
ls_NumVal = "0"
app closes quietly (no error, no crash).
The text was updated successfully, but these errors were encountered: