diff options
author | Pierre Muller <muller@sourceware.org> | 2012-11-20 22:51:05 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2012-11-20 22:51:05 +0000 |
commit | 8c042590f977f3f8da4a8e9357ab4c11a7363438 (patch) | |
tree | a4021a2092bbe240166b2c4b455e3bc1b707f057 /gdb/remote-m32r-sdi.c | |
parent | dda8ddc56f160befb8f8fc3ddc69d66cec6ac4f8 (diff) | |
download | gdb-8c042590f977f3f8da4a8e9357ab4c11a7363438.zip gdb-8c042590f977f3f8da4a8e9357ab4c11a7363438.tar.gz gdb-8c042590f977f3f8da4a8e9357ab4c11a7363438.tar.bz2 |
ARI fixes: sprintf rule.
Replace sprintf function calls for char arrays by
calls to xsnprintf calls.
* arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
(arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
(arm_neon_quad_read, arm_pseudo_read): Ditto.
(arm_neon_quad_write, arm_pseudo_write): Ditto.
* breakpoint.c (condition_completer): Ditto.
(create_tracepoint_from_upload): Ditto.
* dwarf2read.c (file_full_name): Ditto.
* gcore.c (gcore_command): Ditto.
* gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
* go32-nat.c (go32_sysinfo): Ditto.
* interps.c (interp_set): Ditto.
* m32c-tdep.c (make_types): Ditto.
* ppc-linux-nat.c (fetch_register, store_register): Ditto.
* remote-m32r-sdi.c (m32r_open): Ditto.
* sol-thread.c (td_err_string): Ditto.
(td_state_string, solaris_pid_to_str): Ditto.
* symtab.c (gdb_mangle_name): Ditto.
* cli/cli-script.c (execute_control_command): Ditto.
(define_command, document_command): Ditto.
* tui/tui-io.c (tui_rl_display_match_list): Ditto.
* tui/tui-stack.c (tui_make_status_line): Ditto.
* tui/tui-win.c (tui_update_gdb_sizes): Ditto.
Diffstat (limited to 'gdb/remote-m32r-sdi.c')
-rw-r--r-- | gdb/remote-m32r-sdi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/remote-m32r-sdi.c b/gdb/remote-m32r-sdi.c index f7addea..c6ff539 100644 --- a/gdb/remote-m32r-sdi.c +++ b/gdb/remote-m32r-sdi.c @@ -376,14 +376,14 @@ m32r_open (char *args, int from_tty) push_target (&m32r_ops); if (args == NULL) - sprintf (hostname, "localhost:%d", SDIPORT); + xsnprintf (hostname, sizeof (hostname), "localhost:%d", SDIPORT); else { port_str = strchr (args, ':'); if (port_str == NULL) - sprintf (hostname, "%s:%d", args, SDIPORT); + xsnprintf (hostname, sizeof (hostname), "%s:%d", args, SDIPORT); else - strcpy (hostname, args); + xsnprintf (hostname, sizeof (hostname), "%s", args); } sdi_desc = serial_open (hostname); |