diff options
Diffstat (limited to 'package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch')
-rw-r--r-- | package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch b/package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch deleted file mode 100644 index bed4f4dec..000000000 --- a/package/busybox/busybox-1.18.2/busybox-1.18.2-udhcp.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- busybox-1.18.2/networking/udhcp/common.c -+++ busybox-1.18.2-udhcp/networking/udhcp/common.c -@@ -375,7 +375,7 @@ static NOINLINE void attach_option( - new->data = xmalloc(length + OPT_DATA); - new->data[OPT_CODE] = optflag->code; - new->data[OPT_LEN] = length; -- memcpy(new->data + OPT_DATA, buffer, length); -+ memcpy(new->data + OPT_DATA, (allocated ? allocated : buffer), length); - - curr = opt_list; - while (*curr && (*curr)->data[OPT_CODE] < optflag->code) |