| Summary: | kcontrol: WARNING: No K menu group with X-KDE-BaseGroup=settings found ! Defaulting to Settings/ | ||
|---|---|---|---|
| Product: | [Unmaintained] kdelibs | Reporter: | Fabio Erculiani <fabio.erculiani> |
| Component: | ksycoca | Assignee: | Unassigned bugs <unassigned-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | andre.wittmann |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Fabio Erculiani
2004-11-14 20:56:29 UTC
I think this got fixed with the following patch to kdelibs/kdecore/kconfigbackend.cpp:
--- kconfigbackend.cpp 27 Sep 2004 22:11:36 -0000 1.99
+++ kconfigbackend.cpp 27 Dec 2004 10:27:30 -0000 1.100
@@ -448,7 +448,7 @@ void KConfigINIBackEnd::parseSingleConfi
map = ( const char* ) mmap(0, rFile.size(), PROT_READ, MAP_PRIVATE,
rFile.handle(), 0);
- if (map)
+ if ( map != MAP_FAILED )
{
s = (const char*) map;
eof = s + rFile.size();
Please reopen this bugreport if the problem persists after applying this patch.
*** Bug 232976 has been marked as a duplicate of this bug. *** |