Fix RBinInfo.static

This commit is contained in:
pancake 2014-09-09 00:33:31 +02:00
parent 238251af8d
commit 32173be9ee

View File

@ -1149,7 +1149,7 @@ R_API int r_bin_is_static (RBin *bin) {
RBinObject *o = r_bin_cur_object (bin);
if (o && r_list_length (o->libs)>0)
return R_BIN_DBG_STATIC & o->info->dbg_info;
return R_FALSE;
return R_TRUE;
}
// TODO: Integrate with r_bin_dbg */