diff --git a/reactos/ntoskrnl/ke/config.c b/reactos/ntoskrnl/ke/config.c index aa92e96ea67..5f9a196d032 100644 --- a/reactos/ntoskrnl/ke/config.c +++ b/reactos/ntoskrnl/ke/config.c @@ -24,12 +24,14 @@ KeFindConfigurationEntry(IN PCONFIGURATION_COMPONENT_DATA Child, IN CONFIGURATION_TYPE Type, IN PULONG ComponentKey OPTIONAL) { + PCONFIGURATION_COMPONENT_DATA NextLink = NULL; + /* Start Search at Root */ return KeFindConfigurationNextEntry(Child, Class, Type, ComponentKey, - NULL); + &NextLink); } /*