mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
[ROSTESTS] Fix 64bit issues (#1261)
This commit is contained in:
@@ -11,6 +11,8 @@
|
||||
#include <debug.h>
|
||||
#include <shellutils.h>
|
||||
|
||||
#define INVALID_POINTER ((PVOID)(ULONG_PTR)0xdeadbeefdeadbeefULL)
|
||||
|
||||
static
|
||||
VOID
|
||||
TestShellFolder(
|
||||
@@ -55,7 +57,7 @@ VOID TestInitialize(_In_ IShellFolder2 *psf2)
|
||||
hr = ppf2->Initialize(NULL);
|
||||
ok(hr == S_OK, "hr = %lx\n", hr);
|
||||
|
||||
hr = ppf2->Initialize((LPCITEMIDLIST)0xdeaddead);
|
||||
hr = ppf2->Initialize((LPCITEMIDLIST)INVALID_POINTER);
|
||||
ok(hr == S_OK, "hr = %lx\n", hr);
|
||||
|
||||
//crashes in xp
|
||||
|
||||
Reference in New Issue
Block a user