mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 21:44:13 -04:00
general: suppress some CodeQL warnings
CODABLOCKF: tidy some comments
This commit is contained in:
parent
174bbf06a8
commit
c11ab5528d
6 changed files with 16 additions and 17 deletions
|
@ -1141,7 +1141,7 @@ INTERNAL int ultra(struct zint_symbol *symbol, struct zint_seg segs[], const int
|
|||
total_width = columns + 6;
|
||||
|
||||
/* Build symbol */
|
||||
pattern = (char *) z_alloca(total_height * total_width);
|
||||
pattern = (char *) z_alloca((size_t) total_height * (size_t) total_width);
|
||||
|
||||
for (i = 0; i < (total_height * total_width); i++) {
|
||||
pattern[i] = 'W';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue