27 lines
861 B
Diff
27 lines
861 B
Diff
|
|
From 6c909652e4b58d29448af695051efc377594e22f Mon Sep 17 00:00:00 2001
|
||
|
|
From: xiaoweiwei <xiaoweiwei5@huawei.com>
|
||
|
|
Date: Tue, 25 Feb 2020 11:37:10 +0800
|
||
|
|
Subject: [PATCH] avahi: modify fuzz test err
|
||
|
|
|
||
|
|
Signed-off-by: Buildteam <buildteam@openeuler.org>
|
||
|
|
---
|
||
|
|
avahi-core/dns.c | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/avahi-core/dns.c b/avahi-core/dns.c
|
||
|
|
index 7c38f42..d793b76 100644
|
||
|
|
--- a/avahi-core/dns.c
|
||
|
|
+++ b/avahi-core/dns.c
|
||
|
|
@@ -455,7 +455,7 @@ int avahi_dns_packet_consume_uint32(AvahiDnsPacket *p, uint32_t *ret_v) {
|
||
|
|
return -1;
|
||
|
|
|
||
|
|
d = (uint8_t*) (AVAHI_DNS_PACKET_DATA(p) + p->rindex);
|
||
|
|
- *ret_v = (d[0] << 24) | (d[1] << 16) | (d[2] << 8) | d[3];
|
||
|
|
+ *ret_v = ((uint32_t)d[0] << 24) | ((uint32_t)d[1] << 16) | ((uint32_t)d[2] << 8) | (uint32_t)d[3];
|
||
|
|
p->rindex += sizeof(uint32_t);
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
--
|
||
|
|
1.8.3.1
|
||
|
|
|