Opened 15 years ago
Closed 15 years ago
#4008 closed bug (fixed)
Detecting bitmaps with enough Translators will corrupt memory.
Reported by: | stippi | Owned by: | stippi |
---|---|---|---|
Priority: | normal | Milestone: | R1/alpha1 |
Component: | System/runtime_loader | Version: | R1/pre-alpha1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description (last modified by )
When importing media files into Clockwerk, the presence of more than 13 Translators will cause crashes later on. Clockwerk tries to detect files as bitmaps first, then as media files. Luckily, it is reproducible 100% as soon as the first media file is dropped on the clip list. Will look into it ASAP, if no one beats me to it.
Change History (3)
comment:1 by , 15 years ago
Description: | modified (diff) |
---|---|
Summary: | TGA and WonderBrush Translator corrupt memory. → Detecting bitmaps with enough Translators will corrupt memory. |
comment:2 by , 15 years ago
Component: | Add-Ons/Translators → System/runtime_loader |
---|---|
Milestone: | R1 → R1/alpha1 |
comment:3 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Quite likely a runtime loader problem. It maps the segments of a shared object individually, usually letting the kernel choose the base address of the first segment and using B_EXACT_ADDRESS for the second one. That is a problem, since the kernel could pick an address that is fine for the first segment, but which leaves insufficient room for the second segment. Since _kern_map_file() has mmap() semantics, mapping the second segment would just unmap areas that are in the way. In case of the reported problem the victim might be an innocent bitmap.
Two suggested changes: