mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 12:29:40 +01:00
Drop patch merged upstream. (From OE-Core rev: 85fabd7ab4847aa62669ec4edc0dcf02bc7e9b21) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From fc6b51aa67a11806c95363e1bec925d15b3a98a5 Mon Sep 17 00:00:00 2001
|
|
From: Christos Zoulas <christos@zoulas.com>
|
|
Date: Thu, 5 Dec 2024 18:35:40 +0000
|
|
Subject: [PATCH] PR/579: net147: Fix stack overrun.
|
|
|
|
Upstream-Status: Backport [https://github.com/file/file/commit/b3384a1fbfa1fee99986e5750ab8e700de4f24ad]
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
|
---
|
|
src/readelf.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/readelf.c b/src/readelf.c
|
|
index fe4cf541..d209d86d 100644
|
|
--- a/src/readelf.c
|
|
+++ b/src/readelf.c
|
|
@@ -27,7 +27,7 @@
|
|
#include "file.h"
|
|
|
|
#ifndef lint
|
|
-FILE_RCSID("@(#)$File: readelf.c,v 1.196 2024/11/11 15:49:11 christos Exp $")
|
|
+FILE_RCSID("@(#)$File: readelf.c,v 1.197 2024/12/05 18:35:40 christos Exp $")
|
|
#endif
|
|
|
|
#ifdef BUILTIN_ELF
|
|
@@ -1726,7 +1726,7 @@ dophn_exec(struct magic_set *ms, int clazz, int swap, int fd, off_t off,
|
|
Elf64_Phdr ph64;
|
|
const char *linking_style;
|
|
unsigned char nbuf[NBUFSIZE];
|
|
- char interp[128];
|
|
+ char interp[NBUFSIZE];
|
|
ssize_t bufsize;
|
|
size_t offset, align, need = 0;
|
|
int pie = 0, dynamic = 0;
|