diff options
Diffstat (limited to 'translate-all.c')
-rw-r--r-- | translate-all.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/translate-all.c b/translate-all.c index 2a40530bba..8eb4512625 100644 --- a/translate-all.c +++ b/translate-all.c @@ -731,10 +731,8 @@ void tb_free(TranslationBlock *tb) static inline void invalidate_page_bitmap(PageDesc *p) { - if (p->code_bitmap) { - g_free(p->code_bitmap); - p->code_bitmap = NULL; - } + g_free(p->code_bitmap); + p->code_bitmap = NULL; p->code_write_count = 0; } |