From 6843da68e7afa6d31891daba3c44a3ae267e5399 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 19 Feb 2008 00:21:00 +0100 Subject: [PATCH] advapi32/tests: Remove an obsolete comment: Wine's on-disk registry format now supports string values with no trailing '\0'. --- dlls/advapi32/tests/registry.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/advapi32/tests/registry.c b/dlls/advapi32/tests/registry.c index 412232684b2..d8be5c8436c 100644 --- a/dlls/advapi32/tests/registry.c +++ b/dlls/advapi32/tests/registry.c @@ -334,9 +334,6 @@ static void test_set_value(void) /* Test RegSetValueExA with a 'zero-byte' string (as Office 2003 does). * Surprisingly enough we're supposed to get zero bytes out of it. - * FIXME: Wine's on-disk file format does not differentiate this with - * regular empty strings but there's no way to test as it requires - * stopping the wineserver. */ ret = RegSetValueExA(hkey_main, name1A, 0, REG_SZ, (const BYTE *)emptyA, 0); ok(ret == ERROR_SUCCESS, "RegSetValueExA failed: %d, GLE=%d\n", ret, GetLastError());