diff options
author | Andrew Jones | 2013-06-04 10:49:48 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2013-07-04 09:40:56 +0200 |
commit | a0ae17a63e08a57a644eacc1f0fd89d535ed36bf (patch) | |
tree | 9778a305f2cc69b8fcd0c2cd68e08eb5360b282d /MAINTAINERS | |
parent | pc_piix: cleanup init compat handling (diff) | |
download | qemu-a0ae17a63e08a57a644eacc1f0fd89d535ed36bf.tar.gz qemu-a0ae17a63e08a57a644eacc1f0fd89d535ed36bf.tar.xz qemu-a0ae17a63e08a57a644eacc1f0fd89d535ed36bf.zip |
e1000: cleanup process_tx_desc
Coverity complains about two overruns in process_tx_desc(). The
complaints are false positives, but we might as well eliminate
them. The problem is that "hdr" is defined as an unsigned int,
but then used to offset an array of size 65536, and another of
size 256 bytes. hdr will actually never be greater than 255
though, as it's assigned only once and to the value of
tp->hdr_len, which is an uint8_t. This patch simply gets rid of
hdr, replacing it with tp->hdr_len, which makes it consistent
with all other tp member use in the function.
v2:
- also cleanup coding style issues in the touched lines
Signed-off-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'MAINTAINERS')
0 files changed, 0 insertions, 0 deletions