summaryrefslogtreecommitdiff
path: root/multimedia/transcode/patches/patch-bf
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/transcode/patches/patch-bf')
-rw-r--r--multimedia/transcode/patches/patch-bf22
1 files changed, 0 insertions, 22 deletions
diff --git a/multimedia/transcode/patches/patch-bf b/multimedia/transcode/patches/patch-bf
deleted file mode 100644
index d4edcde2c9d..00000000000
--- a/multimedia/transcode/patches/patch-bf
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-bf,v 1.1 2005/10/10 21:23:24 joerg Exp $
-
---- filter/subtitler/frame_list.c.orig 2005-07-10 17:53:50.000000000 +0000
-+++ filter/subtitler/frame_list.c
-@@ -15,7 +15,7 @@ Foundation, Inc., 675 Mass Ave, Cambridg
- */
-
- #include "subtitler.h"
--
-+#include <stdlib.h>
-
- int hash(s)/* form hash value for string s */
- char *s;
-@@ -33,7 +33,7 @@ return(hashval % FRAME_HASH_SIZE);
-
- char *strsave(char *s) /*save char array s somewhere*/
- {
--char *p, *malloc();
-+char *p;
- if(p = malloc( strlen(s) + 1) ) strcpy(p, s);
- return(p);
- }