diff options
| author | 2013-12-09 10:48:21 +0000 | |
|---|---|---|
| committer | 2013-12-09 10:48:22 +0000 | |
| commit | f4d4ce50947a059a979fc184139ad97def386146 (patch) | |
| tree | 5d9266c16a5b110bacf1ec6062a46a3e33e16bcb /runtime/native/java_lang_VMClassLoader.cc | |
| parent | 1a7e7d6a885bded1ffcdc8ff2490632698dc5139 (diff) | |
| parent | 92572be7f754c213e615a62955cc5f65ca8c0c0e (diff) | |
Merge "Use libziparchive for art zip processing."
Diffstat (limited to 'runtime/native/java_lang_VMClassLoader.cc')
| -rw-r--r-- | runtime/native/java_lang_VMClassLoader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/java_lang_VMClassLoader.cc b/runtime/native/java_lang_VMClassLoader.cc index af1b548aa3..314cdb1a7e 100644 --- a/runtime/native/java_lang_VMClassLoader.cc +++ b/runtime/native/java_lang_VMClassLoader.cc @@ -78,7 +78,7 @@ static jstring VMClassLoader_getBootClassPathResource(JNIEnv* env, jclass, jstri LOG(WARNING) << "Failed to open zip archive '" << location << "': " << error_msg; return NULL; } - UniquePtr<ZipEntry> zip_entry(zip_archive->Find(name.c_str())); + UniquePtr<ZipEntry> zip_entry(zip_archive->Find(name.c_str(), &error_msg)); if (zip_entry.get() == NULL) { return NULL; } |