Bugzilla – Attachment 27170 Details for
Bug 64323
VUL-0: CVE-2004-1284: buffer overflow in mpg123
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
[patch]
Proposed patch by nadvornik@suse.cz
mpg123-0.59s-list-overflow.patch (text/plain), 509 bytes, created by
Petr Mladek
on 2004-12-17 20:24:32 UTC
(
hide
)
Description:
Proposed patch by nadvornik@suse.cz
Filename:
MIME Type:
Creator:
Petr Mladek
Created:
2004-12-17 20:24:32 UTC
Size:
509 bytes
patch
obsolete
>--- playlist.c >+++ playlist.c >@@ -110,8 +110,10 @@ > if ((playlist->listnamedir) && (line[0]!='/') && (line[0]!='\\') > && (strncasecmp(line, "http://", 7)) && (strncasecmp(line, > "ftp://",6)) ){ >- strcpy (linetmp, playlist->listnamedir); >- strcat (linetmp, line); >+ strncpy (linetmp, playlist->listnamedir, 1023); >+ linetmp[1023] = 0; >+ strncat (linetmp, line, 1023 - strlen(linetmp)); >+ linetmp[1023] = 0; > strcpy (line, linetmp); > } > return 1;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
|
Diff
Attachments on
bug 64323
: 27170 |
27171
|
27172