summaryrefslogtreecommitdiff
path: root/editors/lpe
diff options
context:
space:
mode:
authorJimmy Olgeni <olgeni@FreeBSD.org>2001-04-23 22:39:55 +0000
committerJimmy Olgeni <olgeni@FreeBSD.org>2001-04-23 22:39:55 +0000
commitf1ce53b22fe4aaf346e91cd0b23f3840f45f1055 (patch)
tree32293a692bece89809e9651167359005cd6ea664 /editors/lpe
parentUpdate port to version 0.37b14.1 (CPS2 patch updated to 22/04/2001) (diff)
Add patch to prevent core dumps, as reported by ports/26698.
Proposed file "patch-ae" already exists in Attic, and references a different source file. So i moved the patch to patch-af. PR: 26804 Submitted by: Carl Johan Madestrand <calle.madestrand@norrgarden.se>
Notes
Notes: svn path=/head/; revision=41843
Diffstat (limited to 'editors/lpe')
-rw-r--r--editors/lpe/files/patch-af25
1 files changed, 25 insertions, 0 deletions
diff --git a/editors/lpe/files/patch-af b/editors/lpe/files/patch-af
new file mode 100644
index 000000000000..4f1654e58739
--- /dev/null
+++ b/editors/lpe/files/patch-af
@@ -0,0 +1,25 @@
+--- src/lpe.c Thu Apr 19 02:16:41 2001
++++ src/lpe.c Thu Apr 19 03:08:30 2001
+@@ -48,13 +48,17 @@
+ {
+ buffer *node;
+
+- while (the_buf->next != the_buf)
++ if (the_buf->text != NULL)
+ {
+- node = the_buf->next;
+- the_buf->next = the_buf->next->next;
+- the_buf->next->prev = the_buf;
+- free(node);
++ while (the_buf->next != the_buf)
++ {
++ node = the_buf->next;
++ the_buf->next = the_buf->next->next;
++ the_buf->next->prev = the_buf;
++ free(node);
++ }
+ }
++
+ free(the_buf);
+ }
+