| Summary: | kmenuedit crash on exit. | ||
|---|---|---|---|
| Product: | [Applications] kmenuedit | Reporter: | Peter Volkov <torre_cremata> |
| Component: | general | Assignee: | Unassigned bugs <unassigned-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | e_tabee |
| Priority: | NOR | ||
| Version First Reported In: | 0.7 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Peter Volkov
2005-03-28 21:20:45 UTC
I can confirm the problem, it only happens when kcm_khotkeys.la can't be found though, so you may want to see why that is. CVS commit by waba:
Don't crash on exit when kcm_khotkeys.la can't be found.
BUG: 102694
M +1 -1 khotkeys.cpp 1.9
--- kdebase/kmenuedit/khotkeys.cpp #1.8:1.9
@@ -81,5 +81,5 @@ bool KHotKeys::init()
void KHotKeys::cleanup()
{
- if( khotkeys_inited )
+ if( khotkeys_inited && khotkeys_present )
khotkeys_cleanup_2();
khotkeys_inited = false;
|