From Ulrich Weigand:

* utils.c (query): Do not use a va_list variable multiple times.
This commit is contained in:
Jim Blandy 2004-03-30 15:44:16 +00:00
parent 0949843db2
commit 3e6bb910c3
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-03-30 Jim Blandy <jimb@redhat.com>
From Ulrich Weigand:
* utils.c (query): Do not use a va_list variable multiple times.
2004-03-29 Daniel Jacobowitz <drow@mvista.com>
* Makefile.in (linux_nat_h): Update dependencies.

View File

@ -1270,10 +1270,9 @@ query (const char *ctlstr, ...)
int ans2;
int retval;
va_start (args, ctlstr);
if (query_hook)
{
va_start (args, ctlstr);
return query_hook (ctlstr, args);
}
@ -1289,7 +1288,9 @@ query (const char *ctlstr, ...)
if (annotation_level > 1)
printf_filtered ("\n\032\032pre-query\n");
va_start (args, ctlstr);
vfprintf_filtered (gdb_stdout, ctlstr, args);
va_end (args);
printf_filtered ("(y or n) ");
if (annotation_level > 1)