summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/118/none/1381642
blob: 8f503a9611ddd41a000a099c688979433f71e548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
boot: 0.756
device: 0.723
ppc: 0.710
PID: 0.681
socket: 0.654
performance: 0.647
graphic: 0.593
vnc: 0.584
network: 0.562
kernel: 0.559
semantic: 0.496
register: 0.471
permissions: 0.469
x86: 0.467
architecture: 0.451
risc-v: 0.447
i386: 0.443
mistranslation: 0.433
arm: 0.414
TCG: 0.395
files: 0.374
peripherals: 0.369
user-level: 0.345
hypervisor: 0.333
virtual: 0.311
VMM: 0.298
KVM: 0.274
debug: 0.240
assembly: 0.233

ecovec.c:66: buffer too small by one.

[qemu-2.1.2/roms/u-boot/board/renesas/ecovec/ecovec.c:66]: (error) Buffer is accessed out of bounds.

    sprintf(env_mac, "%02X:%02X:%02X:%02X:%02X:%02X",
        mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);

but

    char env_mac[17];

and 18 into 17 won't go. Suggest increase size of env_mac.

On 15 October 2014 19:00, dcb <email address hidden> wrote:
> Public bug reported:
>
> [qemu-2.1.2/roms/u-boot/board/renesas/ecovec/ecovec.c:66]: (error)
> Buffer is accessed out of bounds.

This is in the u-boot code which we just carry a copy of
to produce certain boot ROMs. You should report these
issues directly to u-boot upstream.

Thanks
-- PMM


FWIW, u-boot was apparently fixed here:
http://git.denx.de/?p=u-boot.git;a=commitdiff;h=44442c13ba2f63a67664ab5

...and we don't build u-boot for the renesas ecovec, so we don't need to worry about updating our copy of u-boot to something with the fix in it.