aboutsummaryrefslogtreecommitdiffstats
path: root/main/libc0.9.32/resolv.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/libc0.9.32/resolv.patch')
-rw-r--r--main/libc0.9.32/resolv.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/main/libc0.9.32/resolv.patch b/main/libc0.9.32/resolv.patch
deleted file mode 100644
index 8b84177d17..0000000000
--- a/main/libc0.9.32/resolv.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c
-index 84289a6..5107dec 100644
---- a/libc/inet/resolv.c
-+++ b/libc/inet/resolv.c
-@@ -689,7 +689,7 @@ int attribute_hidden __decode_dotted(const unsigned char *packet,
-
- if (used + b + 1 >= dest_len)
- return -1;
-- if (offset + b + 1 >= packet_len)
-+ if (offset + b >= packet_len)
- return -1;
- memcpy(dest + used, packet + offset, b);
- offset += b;