View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006163 | JEDI VCL | 00 JVCL Components | public | 2013-07-10 11:00 | 2015-09-14 13:20 |
Reporter | Torbins | Assigned To | AHUser | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | 3.48 | |||
Summary | 0006163: Truncated bookmark in TJvMemoryData | ||||
Description | TJvMemoryData in JVCL 3.47 has such code for XE3: procedure TJvMemoryData.InternalGotoBookmark(Bookmark: TJvBookmark); //... begin InternalGotoBookmarkData(TJvBookmarkData({$IFDEF RTL240_UP}PByte(@Bookmark[0]){$ELSE}Bookmark{$ENDIF RTL240_UP}^)); Here Bookmark gets truncated to one byte, while TBookmarkData is four bytes long (integer). So fix will be: InternalGotoBookmarkData(TJvBookmarkData({$IFDEF RTL240_UP}PInteger(@Bookmark[0]){$ELSE}Bookmark{$ENDIF RTL240_UP}^)); | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2013-07-10 11:00 | Torbins | New Issue | |
2013-07-11 20:04 | AHUser | Note Added: 0020569 | |
2013-07-11 20:04 | AHUser | Status | new => resolved |
2013-07-11 20:04 | AHUser | Fixed in Version | => Daily / SVN |
2013-07-11 20:04 | AHUser | Resolution | open => fixed |
2013-07-11 20:04 | AHUser | Assigned To | => AHUser |
2015-09-14 13:20 | obones | Fixed in Version | Daily / GIT => 3.48 |