File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1759,19 +1759,19 @@ void _process_authenticode(
1759
1759
{
1760
1760
const Authenticode * authenticode = auth_array -> signatures [i ];
1761
1761
1762
- if (authenticode -> verify_flags & AUTHENTICODE_VFY_CANT_PARSE )
1762
+ if (authenticode -> verify_flags == AUTHENTICODE_VFY_CANT_PARSE )
1763
1763
continue ;
1764
1764
1765
- if (authenticode -> verify_flags & AUTHENTICODE_VFY_WRONG_PKCS7_TYPE )
1765
+ if (authenticode -> verify_flags == AUTHENTICODE_VFY_WRONG_PKCS7_TYPE )
1766
1766
continue ;
1767
1767
1768
- if (authenticode -> verify_flags & AUTHENTICODE_VFY_NO_SIGNER_INFO )
1768
+ if (authenticode -> verify_flags == AUTHENTICODE_VFY_NO_SIGNER_INFO )
1769
1769
continue ;
1770
1770
1771
- if (authenticode -> verify_flags & AUTHENTICODE_VFY_NO_SIGNER_CERT )
1771
+ if (authenticode -> verify_flags == AUTHENTICODE_VFY_NO_SIGNER_CERT )
1772
1772
continue ;
1773
1773
1774
- if (authenticode -> verify_flags & AUTHENTICODE_VFY_INTERNAL_ERROR )
1774
+ if (authenticode -> verify_flags == AUTHENTICODE_VFY_INTERNAL_ERROR )
1775
1775
continue ;
1776
1776
1777
1777
bool verified = authenticode -> verify_flags == AUTHENTICODE_VFY_VALID ;
You can’t perform that action at this time.
0 commit comments