Fix a missing return

Makes coverity happy
This commit is contained in:
jvoisin 2014-04-21 20:17:22 +00:00
parent eec8512e8b
commit 35880299c2

View File

@ -138,7 +138,7 @@ R_API int r_meta_del(RAnal *a, int type, ut64 addr, ut64 size, const char *str)
}
R_API int r_meta_cleanup(RAnal *a, ut64 from, ut64 to) {
r_meta_del (a, R_META_TYPE_ANY, from, (to-from), NULL);
return r_meta_del (a, R_META_TYPE_ANY, from, (to-from), NULL);
}
R_API void r_meta_item_free(void *_item) {