commit | 7ced4c04b0f93ad0952e98f1c279406975f7011c | [log] [tgz] |
---|---|---|
author | lberki <lberki@google.com> | Thu Jul 13 12:18:56 2017 +0200 |
committer | László Csomor <laszlocsomor@google.com> | Fri Jul 14 10:48:57 2017 +0200 |
tree | 3109ac233f53d49e80f7fe5ea9df65eb824dc178 | |
parent | 63f01a6eb957dd7b192b421da91578810ac2249a [diff] |
Turn on CRC computation in ijar by default. RELNOTES: None. PiperOrigin-RevId: 161785358
diff --git a/third_party/ijar/ijar.cc b/third_party/ijar/ijar.cc index 3c83b63..ce057e5 100644 --- a/third_party/ijar/ijar.cc +++ b/third_party/ijar/ijar.cc
@@ -84,7 +84,7 @@ u1* q = builder->NewFile(filename, 0); size_t out_length = buf - classdata_out; memcpy(q, classdata_out, out_length); - builder->FinishFile(out_length); + builder->FinishFile(out_length, false, true); free(classdata_out); }