vdexExtractor icon indicating copy to clipboard operation
vdexExtractor copied to clipboard

dex_instruction.c:655:43: error: argument 2 of type ‘u4[kMaxVarArgRegs]

Open dingshaohua-com opened this issue 1 year ago • 5 comments

微信截图_20240716202611

dingshaohua-com avatar Jul 16 '24 12:07 dingshaohua-com

I have same issusue.

B3B3K avatar Nov 24 '24 13:11 B3B3K

use https://dgithub.xyz/RJMultiDev/vdexExtractor/tree/patch-1 instead. clone command: git clone https://dgithub.xyz/RJMultiDev/vdexExtractor.git -b patch-1

RJMultiDev avatar Jan 25 '25 13:01 RJMultiDev

use https://dgithub.xyz/RJMultiDev/vdexExtractor/tree/patch-1 instead. clone command: git clone https://dgithub.xyz/RJMultiDev/vdexExtractor.git -b patch-1

I'm getting a 403 forbidden error.

VenomousSteam81 avatar Mar 26 '25 22:03 VenomousSteam81

打开 dex_instruction.c,找到报错的函数声明:

void dexInstr_getVarArgs(u2 *code_ptr, u4 arg[kMaxVarArgRegs]) { 打开 dex_instruction.h,找到对应声明:

void dexInstr_getVarArgs(u2 *, u4[]); 把 .h 文件的声明改成和 .c 文件一样,即:

void dexInstr_getVarArgs(u2 *, u4[kMaxVarArgRegs]); 重新编译即可。

lakehubo avatar Jun 05 '25 01:06 lakehubo

微信截图_20240716202611

Hi, I believe my pull request offers a solution for this problem. You can find it at:

https://github.com/anestisb/vdexExtractor/pull/89

amir-wyvern avatar Aug 02 '25 21:08 amir-wyvern