diff options
| -rw-r--r-- | src/format/image/bmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/image/bmp.c b/src/format/image/bmp.c index 4a0ca95..632def7 100644 --- a/src/format/image/bmp.c +++ b/src/format/image/bmp.c @@ -64,7 +64,7 @@ ff_result ff_open_bmp(ff_stream *stream, ff_bmp_ctx **out_ctx, ff_flag require_v } ff_result ff_bmp_header_handler(uint8_t *buf, size_t len, ff_bmp_ctx *ctx) { - if (len != 14) { + if (len != FF_BMP_HEADER_SIZE) { } }
\ No newline at end of file |
