summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1660035
blob: b4b91d3072023b224a88291d62e9b842fd025b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
hw/timer/altera_timer.c:207: bad size in memset ?

hw/timer/altera_timer.c:207:5: warning: ‘memset’ used with length equal to number of elements without multiplication by element size [-Wmemset-elt-size]

Source code is

     memset(t->regs, 0, ARRAY_SIZE(t->regs));

Maybe better code

     memset(t->regs, 0, R_MAX * sizeof( uint32_t));