We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i try to decompile a file. but crash at
void AddToTable(Function* F, DecTable * tbl, char *value, char *key) { DecTableItem *item; List *type; int index; if (key == NULL) { type = &(tbl->numeric); index = tbl->topNumeric; tbl->topNumeric++; } else { type = &(tbl->keyed); tbl->used++; index = 0; } item = NewTableItem(value, index, key); <-- Crach at this AddToList(type, (ListItem *) item); // FIXME: should work with arrays, too if (tbl->keyedSize == tbl->used && tbl->arraySize == 0) { PrintTable(F, tbl->reg, 0); if (error) return; } }
because CloseTable delete a table so index is invaild.
CloseTable
index
void CloseTable(Function * F, int r) { DecTable *tbl = (DecTable *) PopFromList(&(F->tables)); if (tbl->reg != r) { SET_ERROR(F,"Unhandled construct in table"); return; } DeleteTable(tbl); F->Rtabl[r] = 0; }
i upload a file. you can test it.
The text was updated successfully, but these errors were encountered:
Can you upload the file somewhere accessible?
Sorry, something went wrong.
OMG, u reply me after half a year... i already forget what's going on...
No branches or pull requests
i try to decompile a file. but crash at
because
CloseTable
delete a table soindex
is invaild.i upload a file. you can test it.
The text was updated successfully, but these errors were encountered: