Remove wtf ia* call from cconfig

This commit is contained in:
pancake 2017-06-12 16:37:01 +02:00
parent 00e8f20547
commit 6ad2ced0fe
2 changed files with 3 additions and 1 deletions

View File

@ -752,7 +752,7 @@ static RBinInfo *info(RBinFile *arch) {
h->addr = 12;
h->from = 12;
h->to = arch->buf->length-32;
memcpy (h->buf, arch->buf->buf+12, 20);
memcpy (h->buf, arch->buf->buf + 12, 20);
h = &ret->sum[1];
h->type = "adler32";
h->len = 4;

View File

@ -1304,10 +1304,12 @@ static int cb_iova(void *user, void *data) {
if (r_io_desc_get (core->io, core->io->raised)) {
r_core_block_read (core);
}
#if 0
/* reload symbol information */
if (r_list_length (r_bin_get_sections (core->bin)) > 0) {
r_core_cmd0 (core, ".ia*");
}
#endif
}
return true;
}