Commit 5a56fba7 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll/tests: Remove a dead assignment (LLVM/Clang).

parent 910b3580
......@@ -902,7 +902,7 @@ static void nt_mailslot_test(void)
"rc = %x not STATUS_SUCCESS or STATUS_INVALID_PARAMETER\n", rc);
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment