diff options
author | Vladimir Marko <vmarko@google.com> | 2014-12-03 17:53:53 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-02-11 10:02:55 +0000 |
commit | a48aef4234768ed37828df613919391c21f561a7 (patch) | |
tree | eb77858bc679512245336ec3ca96c8be59f6f34b /runtime/dex_file.h | |
parent | ccce1c02b162b667139eaef563460b1e1f330891 (diff) | |
download | android_art-a48aef4234768ed37828df613919391c21f561a7.tar.gz android_art-a48aef4234768ed37828df613919391c21f561a7.tar.bz2 android_art-a48aef4234768ed37828df613919391c21f561a7.zip |
Fix ImageWriter::ComputeEagerResolvedStringsCallback().
Change-Id: I1a2abd6d78dd7067d9bdbadbd81dd2fd7711fbc5
Diffstat (limited to 'runtime/dex_file.h')
-rw-r--r-- | runtime/dex_file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_file.h b/runtime/dex_file.h index a71ca429cb..d8b152567f 100644 --- a/runtime/dex_file.h +++ b/runtime/dex_file.h @@ -496,7 +496,7 @@ class DexFile { const StringId* FindStringId(const char* string) const; // Looks up a string id for a given utf16 string. - const StringId* FindStringId(const uint16_t* string) const; + const StringId* FindStringId(const uint16_t* string, size_t length) const; // Returns the number of type identifiers in the .dex file. uint32_t NumTypeIds() const { |