Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/ijar/ijar.cc

Issue 1894013002: 🐟 Make Android Lint use interface jars (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ijar-update
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/ijar/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/ijar/ijar.cc
diff --git a/third_party/ijar/ijar.cc b/third_party/ijar/ijar.cc
index 1f1c7828790a91951e347958ed6ce31f18835291..5bbc13cd441d577ee99b5df0ea9ce716ac40ace5 100644
--- a/third_party/ijar/ijar.cc
+++ b/third_party/ijar/ijar.cc
@@ -83,7 +83,7 @@ void JarStripperProcessor::Process(const char* filename, const u4 attr,
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);
}
« no previous file with comments | « third_party/ijar/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698