Hi getting the following error message:
Unhandled Exception:( -99 ) ternal error: code overflow
This is using the BaH.libcurlssl ex_04.bmx file on my own server.
I have traced the error down to the regex parser, here is a small test app that recreates the problem using the regex expression and string that triggers it...
Unhandled Exception:( -99 ) ternal error: code overflow
This is using the BaH.libcurlssl ex_04.bmx file on my own server.
I have traced the error down to the regex parser, here is a small test app that recreates the problem using the regex expression and string that triggers it...
' Recreate FTP Parsing Error SuperStrict Framework BaH.RegEx Import BRL.StandardIO Local dir:String = "drwxr-xr-x 2 merx19 merx19 4096 Nov 1 07:47 . " Local regex:TRegEx = TRegEx.Create("(.*;[0-9]+)\\s*(\\d+)/\\d+\\s*(\\d{1,2})-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-([0-9]{4})\\s*((?:[01]\\d)|(?:2[0-3])):([012345]\\d):([012345]\\d)\\s*\\[(([0-9$A-Za-z_]+)|([0-9$A-Za-z_]+),([0-9$a-zA-Z_]+))\\]?\\s*\\([a-zA-Z]*,[a-zA-Z]*,[a-zA-Z]*,[a-zA-Z]*\\)") Try Local match:TRegExMatch = regex.Find(dir) Print "Found : " + match.SubExp() Catch e:TRegExException Print "Error : " + e.toString() End End Try Print "Done."