diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sqfs/block_processor/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqfs/block_processor/common.c b/lib/sqfs/block_processor/common.c index 2c6e59e..29e117d 100644 --- a/lib/sqfs/block_processor/common.c +++ b/lib/sqfs/block_processor/common.c @@ -317,7 +317,7 @@ int sqfs_block_processor_end_file(sqfs_block_processor_t *proc) if (!(proc->blk_flags & SQFS_BLK_FIRST_BLOCK)) { if (proc->blk_current != NULL && (proc->blk_flags & SQFS_BLK_DONT_FRAGMENT)) { - proc->blk_flags |= SQFS_BLK_LAST_BLOCK; + proc->blk_current->flags |= SQFS_BLK_LAST_BLOCK; } else { err = add_sentinel_block(proc); if (err) |