mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-22 09:46:37 +08:00
2011-02-28 Michael Snyder <msnyder@vmware.com>
* proc-service.c (ps_plog): Call va_end before return.
This commit is contained in:
@ -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>
|
2011-02-28 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* python/python.c (gdbpy_value_cst): New global.
|
* python/python.c (gdbpy_value_cst): New global.
|
||||||
|
@ -189,6 +189,7 @@ ps_plog (const char *fmt, ...)
|
|||||||
|
|
||||||
va_start (args, fmt);
|
va_start (args, fmt);
|
||||||
vfprintf_filtered (gdb_stderr, fmt, args);
|
vfprintf_filtered (gdb_stderr, fmt, args);
|
||||||
|
va_end (args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search for the symbol named NAME within the object named OBJ within
|
/* Search for the symbol named NAME within the object named OBJ within
|
||||||
|
Reference in New Issue
Block a user