mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:23:13 +00:00
Ignore registry reading errors while building services database.
svn path=/trunk/; revision=11263
This commit is contained in:
parent
e8fa5a048e
commit
87079b419a
1 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: database.c,v 1.18 2004/09/20 19:47:25 hbirr Exp $
|
/* $Id: database.c,v 1.19 2004/10/10 21:00:59 navaraf Exp $
|
||||||
*
|
*
|
||||||
* service control manager
|
* service control manager
|
||||||
*
|
*
|
||||||
|
@ -359,6 +359,12 @@ ScmCreateServiceDataBase(VOID)
|
||||||
|
|
||||||
DPRINT("KeyName: '%wZ'\n", &SubKeyName);
|
DPRINT("KeyName: '%wZ'\n", &SubKeyName);
|
||||||
Status = CreateServiceListEntry(&SubKeyName);
|
Status = CreateServiceListEntry(&SubKeyName);
|
||||||
|
|
||||||
|
/* Ignore services without proper registry. */
|
||||||
|
if (Status == STATUS_OBJECT_NAME_NOT_FOUND)
|
||||||
|
{
|
||||||
|
Status = STATUS_SUCCESS;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue