File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -757,6 +757,8 @@ DexKit::GetCallMethods(int64_t encode_method_id) {
757
757
758
758
std::unique_ptr<flatbuffers::FlatBufferBuilder>
759
759
DexKit::GetInvokeMethods (int64_t encode_method_id) {
760
+ InitDexCache (kCallerMethod | kMethodInvoking );
761
+
760
762
auto dex_id = encode_method_id >> 32 ;
761
763
auto method_id = encode_method_id & UINT32_MAX;
762
764
auto result = dex_items[dex_id]->GetInvokeMethods (method_id);
@@ -782,7 +784,7 @@ DexKit::GetUsingStrings(int64_t encode_method_id) {
782
784
783
785
std::unique_ptr<flatbuffers::FlatBufferBuilder>
784
786
DexKit::GetUsingFields (int64_t encode_method_id) {
785
- InitDexCache (kMethodUsingField );
787
+ InitDexCache (kRwFieldMethod | kMethodUsingField );
786
788
787
789
auto dex_id = encode_method_id >> 32 ;
788
790
auto method_id = encode_method_id & UINT32_MAX;
You can’t perform that action at this time.
0 commit comments