From: Keith Seitz Date: Thu, 23 Jul 2009 23:20:00 +0000 (+0000) Subject: * source.c (forward_search_command): Don't fclose the stream, X-Git-Tag: msnyder-checkpoint-072509-branchpoint~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e681b284b3a685300d41173387f3c44c4de1f284;p=thirdparty%2Fbinutils-gdb.git * source.c (forward_search_command): Don't fclose the stream, just run the cleanups. (reverse_search_command): Likewise. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ca7e063232c..ef4936d28b9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2009-07-23 Keith Seitz + + * source.c (forward_search_command): Don't fclose the stream, + just run the cleanups. + (reverse_search_command): Likewise. + 2009-07-23 Paul Pluzhnikov * symtab.c (search_symbols): Add QUIT. diff --git a/gdb/source.c b/gdb/source.c index c40a5aadc0c..c39c0a6adfb 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -1612,7 +1612,7 @@ forward_search_command (char *regex, int from_tty) if (re_exec (buf) > 0) { /* Match! */ - fclose (stream); + do_cleanups (cleanups); print_source_lines (current_source_symtab, line, line + 1, 0); set_internalvar_integer (lookup_internalvar ("_"), line); current_source_line = max (line - lines_to_list / 2, 1); @@ -1690,7 +1690,7 @@ reverse_search_command (char *regex, int from_tty) if (re_exec (buf) > 0) { /* Match! */ - fclose (stream); + do_cleanups (cleanups); print_source_lines (current_source_symtab, line, line + 1, 0); set_internalvar_integer (lookup_internalvar ("_"), line); current_source_line = max (line - lines_to_list / 2, 1); @@ -1699,7 +1699,7 @@ reverse_search_command (char *regex, int from_tty) line--; if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0) { - fclose (stream); + do_cleanups (cleanups); perror_with_name (current_source_symtab->filename); } }