2011-02-28 Michael Snyder <msnyder@vmware.com>
* proc-service.c (ps_plog): Call va_end before return.
This commit is contained in:
parent
9f72fee2a6
commit
0480cefa09
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-02-28 Michael Snyder <msnyder@vmware.com>
|
||||
|
||||
* proc-service.c (ps_plog): Call va_end before return.
|
||||
|
||||
2011-02-28 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* python/python.c (gdbpy_value_cst): New global.
|
||||
|
|
|
@ -189,6 +189,7 @@ ps_plog (const char *fmt, ...)
|
|||
|
||||
va_start (args, fmt);
|
||||
vfprintf_filtered (gdb_stderr, fmt, args);
|
||||
va_end (args);
|
||||
}
|
||||
|
||||
/* Search for the symbol named NAME within the object named OBJ within
|
||||
|
|
Loading…
Reference in a new issue