Skip to content

Commit db9dd93

Browse files
committed
Lossless: Fix innocuous UBSan warnings
1 parent 0712925 commit db9dd93

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

jclossls.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,9 @@ METHODDEF(void)
256256
simple_downscale(j_compress_ptr cinfo,
257257
_JSAMPROW input_buf, _JSAMPROW output_buf, JDIMENSION width)
258258
{
259-
while (width--)
259+
do {
260260
*output_buf++ = (_JSAMPLE)RIGHT_SHIFT(*input_buf++, cinfo->Al);
261+
} while (--width);
261262
}
262263

263264

jddiffct.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ decompress_data(j_decompress_ptr cinfo, _JSAMPIMAGE output_buf)
196196
}
197197

198198
/* Account for restart interval (no-op if not using restarts) */
199-
diff->restart_rows_to_go--;
199+
if (cinfo->restart_interval)
200+
diff->restart_rows_to_go--;
200201

201202
/* Completed an MCU row, but perhaps not an iMCU row */
202203
diff->MCU_ctr = 0;

jdlossls.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -216,16 +216,18 @@ METHODDEF(void)
216216
simple_upscale(j_decompress_ptr cinfo,
217217
JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
218218
{
219-
while (width--)
219+
do {
220220
*output_buf++ = (_JSAMPLE)(*diff_buf++ << cinfo->Al);
221+
} while (--width);
221222
}
222223

223224
METHODDEF(void)
224225
noscale(j_decompress_ptr cinfo,
225226
JDIFFROW diff_buf, _JSAMPROW output_buf, JDIMENSION width)
226227
{
227-
while (width--)
228+
do {
228229
*output_buf++ = (_JSAMPLE)(*diff_buf++);
230+
} while (--width);
229231
}
230232

231233

0 commit comments

Comments
 (0)