mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
ntdll: Mark some fall-throughs in a switch statement.
This commit is contained in:
parent
708f3a3fef
commit
c228ecba39
@ -166,12 +166,19 @@ NTSTATUS WINAPI RtlAllocateAndInitializeSid (
|
||||
switch( nSubAuthorityCount )
|
||||
{
|
||||
case 8: tmp_sid->SubAuthority[7]= nSubAuthority7;
|
||||
/* fall through */
|
||||
case 7: tmp_sid->SubAuthority[6]= nSubAuthority6;
|
||||
/* fall through */
|
||||
case 6: tmp_sid->SubAuthority[5]= nSubAuthority5;
|
||||
/* fall through */
|
||||
case 5: tmp_sid->SubAuthority[4]= nSubAuthority4;
|
||||
/* fall through */
|
||||
case 4: tmp_sid->SubAuthority[3]= nSubAuthority3;
|
||||
/* fall through */
|
||||
case 3: tmp_sid->SubAuthority[2]= nSubAuthority2;
|
||||
/* fall through */
|
||||
case 2: tmp_sid->SubAuthority[1]= nSubAuthority1;
|
||||
/* fall through */
|
||||
case 1: tmp_sid->SubAuthority[0]= nSubAuthority0;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user