ntdll/tests: Remove a dead assignment (LLVM/Clang).
This commit is contained in:
parent
910b3580a3
commit
5a56fba741
|
@ -902,7 +902,7 @@ static void nt_mailslot_test(void)
|
||||||
"rc = %x not STATUS_SUCCESS or STATUS_INVALID_PARAMETER\n", rc);
|
"rc = %x not STATUS_SUCCESS or STATUS_INVALID_PARAMETER\n", rc);
|
||||||
ok( hslot != 0, "Handle is invalid\n");
|
ok( hslot != 0, "Handle is invalid\n");
|
||||||
|
|
||||||
if ( rc == STATUS_SUCCESS ) rc = pNtClose(hslot);
|
if ( rc == STATUS_SUCCESS ) pNtClose(hslot);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Test that the length field is checked properly
|
* Test that the length field is checked properly
|
||||||
|
|
Loading…
Reference in New Issue