[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Parsing x-www-form-urlencoded from Memptr is missing last character

  • Thread starter Thread starter Peter Judge
  • Start date Start date
Status
Not open for further replies.
P

Peter Judge

Guest
This is a bug in the Memptr's GetString() method. It's fixed in 11.7.3. The fix adds the "+ 1" below. /** Returns a string/character representation from a given start position, for the remainder of the data. @param int64 The start potision @return longchar The character/string data requested */ method public longchar GetString(input piStartPos as int64): return GetString(piStartPos, this-object:Size - piStartPos + 1). end.

Continue reading...
 
Status
Not open for further replies.
Back
Top