Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Foobar 1.4.4 crashes (Read 1981 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Foobar 1.4.4 crashes

Hi,

I experience random crashes since.... i don't know probably since 1.4.3, but i'm not sure.
The error message in the failure report is always the same:
Code: [Select]
Illegal operation:
Code: AA67913Ch, flags: 00000001h, address: 773133D2h
Bug check

Call path not available.

I did a memory dump of the frozen foobar_2000 process, and uploaded it on google drive, here it is. There is also the automatic dump created by foobar, and the failure report there.
My guess is that the crash is related to Spider Monkey Panel, even if the repport says "Crash location: Module: KERNELBASE". Most of my layout is powered by this component, but I prefer avoiding annoying the developer without being sure, because... because i may be wrong : )

Re: Foobar 1.4.4 crashes

Reply #1
Thanks for reporting.

I've seen similar crash reports submitted before and made an attempted workaround in foobar2000 v1.4.5.
Please try the latest foobar2000 v1.4.5 beta and see if the problem persists.
Microsoft Windows: We can't script here, this is bat country.

Re: Foobar 1.4.4 crashes

Reply #2
Thanks, installed, i'll let you know

Re: Foobar 1.4.4 crashes

Reply #3
but I prefer avoiding annoying the developer without being sure, because... because i may be wrong
Well, usually it's the other way around - you should annoy component developer first before annoying fb2k dev =) Since it's much more likely that the problem is in the component and @Peter is probably much busier (<rant> seeing as he ignores most of my questions directed at him :| </rant>)

@Peter : could it be that contextmenu_manager(and all other services) should be destroyed only in the main thread?

Re: Foobar 1.4.4 crashes

Reply #4
Maybe you are too pessimist about your own work : ) Or maybe Peter found the right workaround. It needs more time to be sure that the bug isn't there anymore, but so far, no crash, and I used to have 2 or 3 crashs a day.

Re: Foobar 1.4.4 crashes

Reply #5
I noticed that fb2k sometimes "freezes" without response when closing the program while listening to Internet radio.
Before that two scripts in the Spider Monkey Panel were active.
fb2k v1.4.5 beta2
SMP v1.2.1
Biography v1.1.0
YouTube Track Manager v4.1.0

Re: Foobar 1.4.4 crashes

Reply #6
@Peter : could it be that contextmenu_manager(and all other services) should be destroyed only in the main thread?
It was indeed an undocumented assumption that they should only be destroyed from the main thread. I made them resistant to off-main-thread destruction after seeing the reports, as was never explicitly specified before.
Microsoft Windows: We can't script here, this is bat country.

Re: Foobar 1.4.4 crashes

Reply #7
@Peter : seems reasonable. What about the following objects? Are they safe to destroy off the main thread after your changes in 1.4.5?
  • file_info_impl
  • metadb_handle_ptr
  • all the other objects that inherit from service_base

@Sergey : please create a memory dump during the using the following instructions and post it in SMP support thread.

PS: And please, use only SMP support thread for reporting SMP issues in the future =)

Re: Foobar 1.4.4 crashes

Reply #8
Only the menu manager object (mainmenu_manager, contextmenu_manager) and ui_edit_context were unsafe to destroy off main thread. Everything else can be safely destroyed in any thread, at least as far as I am aware of.

There is a mechanism built into the framework already to guard against this issue - serviceRequiresMainThreadDestructor(), but it wasn't deployed until recently. I mitigated the issue on my end by enabling it for affected classes.
Microsoft Windows: We can't script here, this is bat country.

Re: Foobar 1.4.4 crashes

Reply #9
It's been 5 days, for sure your fix works. I didn't experience any crashs. Thanks!