1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

Update to 0.5.1 and fix a bug related to using freed memory.

Maintainer feedback timed out - the DNS setup of astorit.com is badly broken.
In view of the imminent ports freeze for 4.3-RELEASE, I think that in this
case, MAINTAINER can be overridden.

PR:		26572
Submitted by:	Max Khon <fjoe@newst.net>
This commit is contained in:
Peter Pentchev 2001-04-17 08:41:23 +00:00
parent 352540701f
commit a26cd8acb6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41510
4 changed files with 18 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= xtermset
PORTVERSION= 0.5
PORTVERSION= 0.5.1
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= clts
@ -16,6 +16,7 @@ MAINTAINER= dr@astorit.com
GNU_CONFIGURE= yes
USE_GMAKE= yes
MAN1= xtermset.1
MAN5= terms.5
USE_X_PREFIX= yes
MANCOMPRESSED= no

View File

@ -1 +1 @@
MD5 (xtermset-0.5.tar.gz) = e710941843d91ea60c6d5a85b0150fc0
MD5 (xtermset-0.5.1.tar.gz) = 6191a21271dd06b49a20ad9fb6170be4

View File

@ -0,0 +1,13 @@
--- src/arguments.c 2000/12/20 15:54:27 1.2
+++ src/arguments.c 2001/04/14 16:21:52
@@ -62,8 +62,9 @@
current = first;
while(current!=NULL) {
+ argument *next = current->next;
free(current);
- current=current->next;
+ current = next;
}
current = NULL;

View File

@ -1 +1,3 @@
bin/xtermset
share/xtermset/terms
@dirrm share/xtermset