projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a41795a
)
sstrip: fix a section length corruption bug (patch from #6847)
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 12 Mar 2010 00:35:36 +0000
(
00:35
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 12 Mar 2010 00:35:36 +0000
(
00:35
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20154
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
tools/sstrip/src/sstrip.c
patch
|
blob
|
history
diff --git
a/tools/sstrip/src/sstrip.c
b/tools/sstrip/src/sstrip.c
index
6607d12
..
0508aaa
100644
(file)
--- a/
tools/sstrip/src/sstrip.c
+++ b/
tools/sstrip/src/sstrip.c
@@
-251,8
+251,7
@@
static int modifyheaders ## CLASS (Elf ## CLASS ## _Ehdr *ehdr, \
ESET(phdr->p_offset,newsize); \
ESET(phdr->p_filesz,0); \
} else if (EGET(phdr->p_offset) + EGET(phdr->p_filesz) > newsize) { \
- newsize -= EGET(phdr->p_offset); \
- ESET(phdr->p_filesz, newsize); \
+ ESET(phdr->p_filesz, newsize - EGET(phdr->p_offset)); \
} \
} \
\