Menu

#64 Wrong reading memo fields

Win32/Linux
open
Memo (7)
5
2008-05-15
2008-05-15
No

Whne reading some Memo fields creted with a Clipper app, sometimes there is additional Data on a Memo

After some debugging, I found out tha line 280 in dbf_memo : if (endMemo-FBuffer < RecordSize - 1) and ((endMemo[1] = #$1A) or (endMemo[1] = #0)) then

sould read : if (endMemo-FBuffer < RecordSize - 1) and ((endMemo[0] = #$1A) or (endMemo[0] = #0)) then

Can someone confirm this patch ?

Regards, Hubert

Discussion


Log in to post a comment.