Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Jun 2006 03:54:13 GMT
From:      Arseny Nasokin <tarc@tarc.po.cs.msu.su>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/99157: [PATCH] emulators/twin is compiled again
Message-ID:  <200606190354.k5J3sDht014762@www.freebsd.org>
Resent-Message-ID: <200606190400.k5J40gYc031830@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         99157
>Category:       ports
>Synopsis:       [PATCH] emulators/twin is compiled again
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 19 04:00:41 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Arseny Nasokin
>Release:        FreeBSD-7.0
>Organization:
Moscow State University
>Environment:
$FreeBSD: ports/emulators/twin/Makefile,v 1.26 2006/05/07 10:55:45 edwin Exp $
>Description:
This port was marked as broken, becouse while compilling resources, utility cause Segmentation fault
>How-To-Repeat:
Try to compile (-DTRYBROKEN)
>Fix:
adding following patch fixes problem

--- ./tools/rc/cleanup.c.orig   Sun Mar 14 13:58:51 1999
+++ ./tools/rc/cleanup.c        Mon Jun 19 07:44:21 2006
@@ -76,7 +76,7 @@
        free_menu_list(node->child);
       str_free(node->data.menuname);
       free_mem(node);
-      node = node->next;
+      node = next;
     }
 }

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606190354.k5J3sDht014762>