Skip to content

Commit

Permalink
tp: add handling of the language encoding zip flag
Browse files Browse the repository at this point in the history
We don't need to pay attention to it really: our files are all in ASCII
anyway.

Fixes: 376640457
Change-Id: I3f1cc6f1d2dceb65dfe7ad224ca4c3daa761df4f
  • Loading branch information
LalitMaganti committed Oct 31, 2024
1 parent 9cde3e7 commit 7564e9e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/trace_processor/util/zip_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ enum GeneralPurposeBitFlag : uint32_t {
k8kSlidingDictionary = 1u << 1,
kShannonFaro = 1u << 2,
kDataDescriptor = 1u << 3,
kUnknown = ~((1u << 4) - 1),
kLangageEncoding = 1u << 11,
kUnknown = ~(kEncrypted | k8kSlidingDictionary | kShannonFaro |
kDataDescriptor | kLangageEncoding),
};

// Compression flags.
Expand Down

0 comments on commit 7564e9e

Please sign in to comment.