advapi32: Fixed registry test that failed because of a buffer overflow.
This commit is contained in:
parent
bf6d0f2272
commit
7e2228f15a
|
@ -754,7 +754,6 @@ static void test_reg_query_value(void)
|
||||||
LONG size, ret;
|
LONG size, ret;
|
||||||
|
|
||||||
static const WCHAR expected[] = {'d','a','t','a',0};
|
static const WCHAR expected[] = {'d','a','t','a',0};
|
||||||
static const WCHAR set[] = {'d','a','t','a'};
|
|
||||||
|
|
||||||
ret = RegCreateKeyA(hkey_main, "subkey", &subkey);
|
ret = RegCreateKeyA(hkey_main, "subkey", &subkey);
|
||||||
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
||||||
|
@ -845,19 +844,16 @@ static void test_reg_query_value(void)
|
||||||
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
||||||
|
|
||||||
/* unicode - set the value without a NULL terminator */
|
/* unicode - set the value without a NULL terminator */
|
||||||
ret = RegSetValueW(subkey, NULL, REG_SZ, set, sizeof(set));
|
ret = RegSetValueW(subkey, NULL, REG_SZ, expected, sizeof(expected)-sizeof(WCHAR));
|
||||||
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
||||||
|
|
||||||
/* unicode - read the unterminated value, value is terminated for us */
|
/* unicode - read the unterminated value, value is terminated for us */
|
||||||
memset(valW, 'a', sizeof(valW));
|
memset(valW, 'a', sizeof(valW));
|
||||||
size = sizeof(valW);
|
size = sizeof(valW);
|
||||||
ret = RegQueryValueW(subkey, NULL, valW, &size);
|
ret = RegQueryValueW(subkey, NULL, valW, &size);
|
||||||
todo_wine
|
|
||||||
{
|
|
||||||
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
ok(ret == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", ret);
|
||||||
ok(!lstrcmpW(valW, expected), "Got wrong value\n");
|
ok(!lstrcmpW(valW, expected), "Got wrong value\n");
|
||||||
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
ok(size == sizeof(expected), "Got wrong size: %d\n", size);
|
||||||
}
|
|
||||||
|
|
||||||
RegDeleteKeyA(subkey, "");
|
RegDeleteKeyA(subkey, "");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue