From f07b34a9d08f0c6b97646e058fad5369c7613e0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 17 Sep 2006 08:44:17 +0000 Subject: [PATCH] I don't know how to save REG_LINK info on disk, so ignore them. Incidently, fixes "make install_registry" svn path=/trunk/; revision=24156 --- reactos/tools/mkhive/registry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/mkhive/registry.c b/reactos/tools/mkhive/registry.c index 0a2847e78da..9a7aca0243a 100644 --- a/reactos/tools/mkhive/registry.c +++ b/reactos/tools/mkhive/registry.c @@ -345,8 +345,8 @@ RegSetValueExW( /* Create the link in registry hive (if applicable) */ if (Key->RegistryHive != DestKey->RegistryHive) return STATUS_SUCCESS; - lpData = (PUCHAR)&DestKey->KeyCellOffset; - cbData = sizeof(HCELL_INDEX); + DPRINT1("Save link to registry\n"); + return STATUS_NOT_IMPLEMENTED; } if ((cbData & REG_DATA_SIZE_MASK) != cbData)