diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-05-05 20:12:46 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-05-05 20:12:46 +0000 |
commit | a1276c0dce7237b6dd5b0d1a32b7e83b45e2e5ab (patch) | |
tree | 3ffac5f72a994d692c47aee58e15ae699fcf4039 /devel/nasm/patches | |
parent | 0c44f490780aa2640d29ba3d75061ac97b253e23 (diff) | |
download | pkgsrc-a1276c0dce7237b6dd5b0d1a32b7e83b45e2e5ab.tar.gz |
- Bump to nb1 for recent security issue
- https://bugzilla.redhat.com/beta/show_bug.cgi?id=152962
- https://bugzilla.redhat.com/beta/show_bug.cgi?id=152963
- https://www.redhat.com/archives/fedora-cvs-commits/2005-April/msg00159.html
- http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-1194
Diffstat (limited to 'devel/nasm/patches')
-rw-r--r-- | devel/nasm/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/nasm/patches/patch-ac b/devel/nasm/patches/patch-ac new file mode 100644 index 00000000000..6212b7d36ff --- /dev/null +++ b/devel/nasm/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.3 2005/05/05 20:12:46 adrianp Exp $ + +--- output/outieee.c.orig 2005-05-05 21:05:26.000000000 +0100 ++++ output/outieee.c +@@ -1120,7 +1120,7 @@ static void ieee_putascii(char *format, + va_list ap; + + va_start(ap, format); +- vsprintf(buffer, format, ap); ++ vsnprintf(buffer, sizeof(buffer), format, ap); + l = strlen(buffer); + for (i = 0; i < l; i++) + if ((buffer[i] & 0xff) > 31) |