summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/winefish/files/winefish-1.3.3-memset.patch')
-rw-r--r--app-text/winefish/files/winefish-1.3.3-memset.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/app-text/winefish/files/winefish-1.3.3-memset.patch b/app-text/winefish/files/winefish-1.3.3-memset.patch
deleted file mode 100644
index 7390642bb690..000000000000
--- a/app-text/winefish/files/winefish-1.3.3-memset.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/highlight.c
-+++ b/src/highlight.c
-@@ -731,7 +731,7 @@
- GList *tmplist = g_list_first(level);
- while (tmplist) {
- Tpattern * pat = (Tpattern *)tmplist->data;
-- memset(pat->ovector,0,sizeof(pat->ovector));
-+ memset(pat->ovector,0,sizeof(&pat->ovector));
- pat->is_match = FALSE;
- patmatch_init_run(pat->childs);
- tmplist = g_list_next(tmplist);