Opened 11 years ago
Closed 11 years ago
Last modified 11 years ago
#12040 closed Bug Report - Crash (fixed)
Core dump in MythUIButtonList::GetItemCurrent
Reported by: | Owned by: | stuartm | |
---|---|---|---|
Priority: | blocker | Milestone: | 0.27.1 |
Component: | MythTV - General | Version: | 0.27-fixes |
Severity: | high | Keywords: | |
Cc: | Ticket locked: | no |
Description
I think this line (~1564) in MythUIButtonList::GetItemCurrent?():
if (m_itemList.isEmpty() || m_selPosition > m_itemList.size() ||
should be changed to:
if (m_itemList.isEmpty() || m_selPosition >= m_itemList.size() ||
to prevent a core dump like the one I saw. See attached stack trace, in particular thread 1 where the Qt library throws an assertion when a couple of lines later, an attempt is made to fetch the item at position 2 (the third item). Examination of m_itemList shows it has a size of 2.
Looking back at the logs, it appears mythfrontend was coming out of playback mode and there had been a decoding error. I think another frontend had deleted another recording of the same series shortly before that time. Perhaps that's a clue to reproducing the crash?
Attachments (2)
Change History (7)
Changed 11 years ago by
Attachment: | mythfrontend.log added |
---|
log entries from the time up to the core dump
comment:1 Changed 11 years ago by
Milestone: | unknown → 0.27.1 |
---|---|
Owner: | set to stuartm |
Priority: | minor → blocker |
Severity: | medium → high |
Status: | new → accepted |
comment:2 Changed 11 years ago by
FYI, it happened again, this time on a different frontend, and again, a second frontend had recently deleted an episode of the same series the first frontend was playing, but not the episode being played on the first front end. I tried to reproduce it, but couldn't. Must require split second timing. I think this scenario might reproduce it. Given two front ends, FE1 and FE2:
- display the same series in both FE1 and FE2.
- On FE1, start playing the last episode. Advance to 1 minute from end.
- On FE2, start playing the first episode. Delete episode.
- On FE1, advance to end.
comment:3 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | accepted → closed |
full stack trace