summaryrefslogtreecommitdiff
path: root/x11/XFree86-libs/patches/patch-ax
diff options
context:
space:
mode:
Diffstat (limited to 'x11/XFree86-libs/patches/patch-ax')
-rw-r--r--x11/XFree86-libs/patches/patch-ax13
1 files changed, 0 insertions, 13 deletions
diff --git a/x11/XFree86-libs/patches/patch-ax b/x11/XFree86-libs/patches/patch-ax
deleted file mode 100644
index c84df7fa585..00000000000
--- a/x11/XFree86-libs/patches/patch-ax
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ax,v 1.3 2006/09/16 08:28:36 adrianp Exp $
-
---- lib/font/Type1/util.c.orig 2001-01-17 19:43:24.000000000 +0000
-+++ lib/font/Type1/util.c
-@@ -97,7 +97,7 @@ vm_alloc(int bytes)
- bytes = (bytes + 7) & ~7;
-
- /* Allocate the space, if it is available */
-- if (bytes <= vm_free) {
-+ if (bytes > 0 && bytes <= vm_free) {
- answer = vm_next;
- vm_free -= bytes;
- vm_next += bytes;