Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions VerifyStoreReceipt/VerifyStoreReceipt.m
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,10 @@
// Attribute version
ASN1_get_object(&p, &length, &type, &xclass, seq_end - p);
if (type == V_ASN1_INTEGER && length == 1) {
// clang analyser hit (wontfix at the moment, since the code might come in handy later)
// But if someone has a convincing case throwing that out, I might do so, Roddi
attr_version = p[0];
// Suppressed Clang Static Analyzer hit (stored value might come in handy later)
#ifndef __clang_analyzer__
attr_version = p[0];
#endif
}
p += length;

Expand Down