Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 103114 Details for
Bug 154573
app-text/gv: Stack Overflow Vulnerability (CVE-2006-5864)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
gv-CVE-2006-5864-better.patch
gv-CVE-2006-5864-better.patch (text/plain), 699 bytes, created by
Sune Kloppenborg Jeppesen (RETIRED)
on 2006-12-01 01:41:05 UTC
(
hide
)
Description:
gv-CVE-2006-5864-better.patch
Filename:
MIME Type:
Creator:
Sune Kloppenborg Jeppesen (RETIRED)
Created:
2006-12-01 01:41:05 UTC
Size:
699 bytes
patch
obsolete
>--- source/ps.c >+++ source/ps.c 2006-11-09 17:37:07.000000000 +0000 >@@ -1423,6 +1423,10 @@ > quoted=1; > line++; > while (*line && !(*line == ')' && level == 0 )) { >+ if (cp - text >= PSLINELENGTH - 2) { >+ ENDMESSAGE(gettext) >+ return NULL; >+ } > if (*line == '\\') { > if (*(line+1) == 'n') { > *cp++ = '\n'; >@@ -1477,8 +1481,13 @@ > } > } > } else { >- while (*line && !(*line == ' ' || *line == '\t' || *line == '\n')) >+ while (*line && !(*line == ' ' || *line == '\t' || *line == '\n')) { >+ if (cp - text >= PSLINELENGTH - 2) { >+ ENDMESSAGE(gettext) >+ return NULL; >+ } > *cp++ = *line++; >+ } > } > *cp = '\0'; > if (next_char) *next_char = line;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 154573
:
101813
| 103114