From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23933 invoked by alias); 29 Aug 2012 22:24:30 -0000 Received: (qmail 23925 invoked by uid 22791); 29 Aug 2012 22:24:29 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD,SPF_HELO_PASS,TW_BT,TW_DB X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 29 Aug 2012 22:24:13 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q7TMOCwR027224 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 29 Aug 2012 18:24:12 -0400 Received: from mesquite.lan ([10.3.113.18]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q7TMOB79031096 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 29 Aug 2012 18:24:12 -0400 Date: Wed, 29 Aug 2012 22:24:00 -0000 From: Kevin Buettner To: insight@sourceware.org Subject: Branch tag gdb_7_5-branch added for insight specific sources Message-ID: <20120829152411.208ae783@mesquite.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2012-q3/txt/msg00006.txt.bz2 I've added the gdb_7_5-branch branch tag for the following insight specific source directories: gdb/gdbtk gdb/testsuite/gdb.gdbtk tcl tk itcl libgui As usual, I found that I couldn't use the same date as that used by GDB for creating the branch point. Also, as usual, I didn't create a branch point for insight, though I can do so if requested. For the insight specific sources, I used -D 2012-08-09 in order to bring in Roland Schwingel's fixes to make insight compilable. I had to revert one of those changes, however, for the gdb 7.5 branch. I'm appending this patch along with the ChangeLog entry below. I've committed this patch to the branch. Kevin 2012-08-29 Kevin Buettner * generic/gdbtk-cmds.c (gdb_load_info): Revert change regarding make_cleanup_bfd_unref for the gdb 7.5 branch. Index: generic/gdbtk-cmds.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-cmds.c,v retrieving revision 1.128 diff -u -p -r1.128 gdbtk-cmds.c --- generic/gdbtk-cmds.c 8 Aug 2012 13:50:32 -0000 1.128 +++ generic/gdbtk-cmds.c 29 Aug 2012 22:07:37 -0000 @@ -968,7 +968,7 @@ gdb_load_info (ClientData clientData, Tc gdbtk_set_result (interp, "Open of %s failed", filename); return TCL_ERROR; } - old_cleanups = make_cleanup_bfd_unref (loadfile_bfd); + old_cleanups = make_cleanup_bfd_close (loadfile_bfd); if (!bfd_check_format (loadfile_bfd, bfd_object)) {