mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 19:47:31 +00:00
Fix a missing return
Makes coverity happy
This commit is contained in:
parent
eec8512e8b
commit
35880299c2
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user