Open ademyankov opened 7 years ago
There is a pointer bug when substring starts from a position larger than the original string length. IF condition has to be extended:
if (str != NULL && length != 0 && first <= ATX_StringLength(str))
Thanks for pointing this out. Will fix this ASAP.
There is a pointer bug when substring starts from a position larger than the original string length. IF condition has to be extended:
if (str != NULL && length != 0 && first <= ATX_StringLength(str))