projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92a0a3c
)
[ntoskrnl/cm]
author
Aleksey Bragin
<aleksey@reactos.org>
Sun, 3 Jan 2010 18:14:34 +0000
(18:14 +0000)
committer
Aleksey Bragin
<aleksey@reactos.org>
Sun, 3 Jan 2010 18:14:34 +0000
(18:14 +0000)
- advapi32 winetest registry tries to create a non-volatile child of a volatile parent. Comment out the warning ASSERT to let testman pass through this condition.
svn path=/trunk/; revision=44916
reactos/ntoskrnl/config/cmparse.c
patch
|
blob
|
history
diff --git
a/reactos/ntoskrnl/config/cmparse.c
b/reactos/ntoskrnl/config/cmparse.c
index
c03b139
..
42d7379
100644
(file)
--- a/
reactos/ntoskrnl/config/cmparse.c
+++ b/
reactos/ntoskrnl/config/cmparse.c
@@
-460,7
+460,7
@@
CmpDoCreate(IN PHHIVE Hive,
!(ParseContext->CreateOptions & REG_OPTION_VOLATILE))
{
/* Children of volatile parents must also be volatile */
- ASSERT(FALSE);
+
//
ASSERT(FALSE);
Status = STATUS_CHILD_MUST_BE_VOLATILE;
goto Exit;
}