don't avoid emitting part of the allocation bitmap when NOT told to do so

The condition in the if statement is wrong, as what we're trying to achieve
is to avoid emitting the particular piece of allocation bitmap if that piece
is empty AND we specifically request to skip empty bitmaps.
This commit is contained in:
Thanos Makatos 2016-04-06 15:15:58 +03:00
parent 431f2ab50a
commit 5ebeb64cf8
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ namespace tmakatos_emitter {
}
void binary_emitter::emit_bmp(bool omit_if_zero) {
if (!(!bitmap && omit_if_zero))
if (bitmap || !omit_if_zero)
out_.write((const char*)&bitmap, sizeof bitmap);
bitmap = 0;
cur++;