diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 21:54:33 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 21:54:33 +0000 |
commit | 60b37dbedcfe6e22fe9a61ee8432ae7bd2780483 (patch) | |
tree | 42c5d548da07f10a85c92da3191700e6f34e6829 /graphics/aalib/files/patch-src_aaprintf.c | |
parent | security/arirang: Mark broken with Ruby 2.0 or newer (diff) |
Rename german/ and graphics/ patch-xy patches to reflect the files they modify.
Diffstat (limited to 'graphics/aalib/files/patch-src_aaprintf.c')
-rw-r--r-- | graphics/aalib/files/patch-src_aaprintf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/aalib/files/patch-src_aaprintf.c b/graphics/aalib/files/patch-src_aaprintf.c new file mode 100644 index 000000000000..811a580214a0 --- /dev/null +++ b/graphics/aalib/files/patch-src_aaprintf.c @@ -0,0 +1,11 @@ +--- src/aaprintf.c.orig Thu Apr 26 23:37:31 2001 ++++ src/aaprintf.c Sat Mar 2 22:54:56 2002 +@@ -7,7 +7,7 @@ + char buf[1025]; + int i; + va_start(args,fmt); +- i=vsprintf(buf,fmt,args); ++ i=vsnprintf(buf,sizeof(buf),fmt,args); + va_end(args); + aa_puts(c,x,y,attr,buf); + return i; |