diff options
-rw-r--r-- | converters/tnef/Makefile | 1 | ||||
-rw-r--r-- | converters/tnef/files/patch-src__tnef.c | 20 |
2 files changed, 20 insertions, 1 deletions
diff --git a/converters/tnef/Makefile b/converters/tnef/Makefile index c0eebb896fcf..70811adcc46e 100644 --- a/converters/tnef/Makefile +++ b/converters/tnef/Makefile @@ -11,7 +11,6 @@ COMMENT= Unpack data in MS Outlook TNEF format OPTIONS_DEFINE= DOCS -USE_GCC= any GNU_CONFIGURE= yes MAN1= tnef.1 diff --git a/converters/tnef/files/patch-src__tnef.c b/converters/tnef/files/patch-src__tnef.c new file mode 100644 index 000000000000..5b890f2f97ec --- /dev/null +++ b/converters/tnef/files/patch-src__tnef.c @@ -0,0 +1,20 @@ +--- ./src/tnef.c.orig 2012-03-01 00:46:07.000000000 +0100 ++++ ./src/tnef.c 2013-09-05 16:57:10.926068671 +0200 +@@ -43,6 +43,8 @@ + + static size_t filesize; + ++static void free_bodies(VarLenData **bodies, int len); ++ + typedef struct + { + VarLenData **text_body; +@@ -386,7 +388,7 @@ + return 0; + } + +-void free_bodies(VarLenData **bodies, int len) ++static void free_bodies(VarLenData **bodies, int len) + { + while (len--) + { |