Skip to content

Commit

Permalink
std/qoi: fix restart io_position
Browse files Browse the repository at this point in the history
  • Loading branch information
nigeltao committed Sep 8, 2024
1 parent ef6814e commit 36991e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release/c/wuffs-unsupported-snapshot.c
Original file line number Diff line number Diff line change
Expand Up @@ -71396,7 +71396,7 @@ wuffs_qoi__decoder__do_decode_frame_config(
goto suspend;
}
} else if (self->private_impl.f_call_sequence == 40u) {
if (16u != wuffs_base__u64__sat_add((a_src ? a_src->meta.pos : 0), ((uint64_t)(iop_a_src - io0_a_src)))) {
if (14u != wuffs_base__u64__sat_add((a_src ? a_src->meta.pos : 0), ((uint64_t)(iop_a_src - io0_a_src)))) {
status = wuffs_base__make_status(wuffs_base__error__bad_restart);
goto exit;
}
Expand Down
2 changes: 1 addition & 1 deletion std/qoi/decode_qoi.wuffs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ pri func decoder.do_decode_frame_config?(dst: nptr base.frame_config, src: base.
} else if this.call_sequence < 0x20 {
this.do_decode_image_config?(dst: nullptr, src: args.src)
} else if this.call_sequence == 0x28 {
if 16 <> args.src.position() {
if 14 <> args.src.position() {
return base."#bad restart"
}
} else if this.call_sequence == 0x40 {
Expand Down

0 comments on commit 36991e1

Please sign in to comment.