[ros-bugs] [Bug 7162] New: PATCH: Configuration manager library (cmlib) - Correct a structure declaration inconsistency.
ReactOS.Bugzilla at reactos.org
ReactOS.Bugzilla at reactos.org
Tue Jul 3 14:52:05 UTC 2012
http://www.reactos.org/bugzilla/show_bug.cgi?id=7162
Summary: PATCH: Configuration manager library (cmlib) - Correct a
structure declaration inconsistency.
Product: ReactOS
Version: TRUNK
Platform: x86 Hardware
OS/Version: ReactOS
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: Patches
AssignedTo: ros-bugs at reactos.org
ReportedBy: hermes.belusca at sfr.fr
QAContact: ros-bugs at reactos.org
Created an attachment (id=7859)
--> (http://www.reactos.org/bugzilla/attachment.cgi?id=7859)
Patch
This patch corrects an inconsistency in cmlib :
the CMHIVE structure was declared as follows (cmlib/cmlib.h):
typedef struct _CMHIVE
{
HHIVE Hive;
HANDLE FileHandles[3];
...
}
whereas in ntoskrnl/include/internal/cm.h we have :
typedef struct _CMHIVE
{
HHIVE Hive;
HANDLE FileHandles[HFILE_TYPE_MAX];
...
// the same things as in CMHIVE from cmlib.h
}
--
Configure bugmail: http://www.reactos.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the Ros-bugs
mailing list