From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5041 invoked by alias); 12 Nov 2008 18:02:44 -0000 Mailing-List: contact archer-commits-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: Received: (qmail 4969 invoked by uid 306); 12 Nov 2008 18:02:43 -0000 Date: Wed, 12 Nov 2008 18:02:00 -0000 Message-ID: <20081112180243.4944.qmail@sourceware.org> From: tromey@sourceware.org To: archer-commits@sourceware.org Subject: [SCM] archer-sergio-catch-syscall: fix call to make_cleanup_fclose X-Git-Refname: refs/heads/archer-sergio-catch-syscall X-Git-Reftype: branch X-Git-Oldrev: c7c93be2ade609b28ac7131f4885d1e2f25e7f92 X-Git-Newrev: f80eb55f788e6182342e426ee637180c7acd35c4 X-SW-Source: 2008-q4/txt/msg00098.txt.bz2 List-Id: The branch, archer-sergio-catch-syscall has been updated via f80eb55f788e6182342e426ee637180c7acd35c4 (commit) from c7c93be2ade609b28ac7131f4885d1e2f25e7f92 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit f80eb55f788e6182342e426ee637180c7acd35c4 Author: Tom Tromey Date: Wed Nov 12 11:02:34 2008 -0700 fix call to make_cleanup_fclose ----------------------------------------------------------------------- Summary of changes: gdb/xml-syscall.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) First 500 lines of diff: diff --git a/gdb/xml-syscall.c b/gdb/xml-syscall.c index b90888d..2febf6e 100644 --- a/gdb/xml-syscall.c +++ b/gdb/xml-syscall.c @@ -178,7 +178,7 @@ fetch_xml_from_file (const char *filename, void *baton) if (file == NULL) return NULL; - back_to = make_cleanup (make_cleanup_fclose, file); + back_to = make_cleanup_fclose (file); /* Read in the whole file, one chunk at a time. */ len = 4096; hooks/post-receive -- Repository for Project Archer.