diff options
author | Tom Tromey <tromey@adacore.com> | 2019-12-05 08:15:51 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-12-13 15:15:31 -0700 |
commit | 3cb5a3a16af2cae1a5059b7571c514b3fa575df9 (patch) | |
tree | 40c1c42a3eb1b8567be1367f2dc3c0e05b6ccd7e /gdb | |
parent | c6cbf900d42cf8f2ebbcf33d799c52c54b9aa9f0 (diff) | |
download | gdb-3cb5a3a16af2cae1a5059b7571c514b3fa575df9.zip gdb-3cb5a3a16af2cae1a5059b7571c514b3fa575df9.tar.gz gdb-3cb5a3a16af2cae1a5059b7571c514b3fa575df9.tar.bz2 |
Suppress ARI warnings for vsprintf
A few spots can validly call vsprintf; this adds ARI markers to
suppress warnings at these places.
gdb/ChangeLog
2019-12-13 Tom Tromey <tromey@adacore.com>
* gdbsupport/common-utils.c (string_printf, string_vprintf)
(string_vappendf): Add ARI comment.
Change-Id: Ia8665aa5d7b7331a3985b18626b19764a264447b
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbsupport/common-utils.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d107b6c..0e1f484 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-12-13 Tom Tromey <tromey@adacore.com> + * gdbsupport/common-utils.c (string_printf, string_vprintf) + (string_vappendf): Add ARI comment. + +2019-12-13 Tom Tromey <tromey@adacore.com> + * contrib/ari/gdb_ari.sh: Remove "fix" call for floatformat_to_double. * target-float.c (host_float_ops<T>::from_target): Add ARI diff --git a/gdb/gdbsupport/common-utils.c b/gdb/gdbsupport/common-utils.c index d1059de..33f9bf6a 100644 --- a/gdb/gdbsupport/common-utils.c +++ b/gdb/gdbsupport/common-utils.c @@ -89,7 +89,7 @@ string_printf (const char* fmt, ...) /* C++11 and later guarantee std::string uses contiguous memory and always includes the terminating '\0'. */ va_start (vp, fmt); - vsprintf (&str[0], fmt, vp); + vsprintf (&str[0], fmt, vp); /* ARI: vsprintf */ va_end (vp); return str; @@ -111,7 +111,7 @@ string_vprintf (const char* fmt, va_list args) /* C++11 and later guarantee std::string uses contiguous memory and always includes the terminating '\0'. */ - vsprintf (&str[0], fmt, args); + vsprintf (&str[0], fmt, args); /* ARI: vsprintf */ return str; } @@ -147,7 +147,7 @@ string_vappendf (std::string &str, const char *fmt, va_list args) /* C++11 and later guarantee std::string uses contiguous memory and always includes the terminating '\0'. */ - vsprintf (&str[curr_size], fmt, args); + vsprintf (&str[curr_size], fmt, args); /* ARI: vsprintf */ } char * |