diff options
author | Pedro Alves <palves@redhat.com> | 2013-03-13 16:45:11 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-03-13 16:45:11 +0000 |
commit | a0bcdaa75e9fbabdf4e1654e4aba5237c8360989 (patch) | |
tree | af562ef27c4f00da7434b6dc60d6f82e53f45da6 /gdb/ada-lex.l | |
parent | 8ddb196517f30b5e304663e428f345daf030230b (diff) | |
download | gdb-a0bcdaa75e9fbabdf4e1654e4aba5237c8360989.zip gdb-a0bcdaa75e9fbabdf4e1654e4aba5237c8360989.tar.gz gdb-a0bcdaa75e9fbabdf4e1654e4aba5237c8360989.tar.bz2 |
More invalid pointer to pointer conversions.
As a follow up to:
http://sourceware.org/ml/gdb-patches/2013-03/msg00449.html
In a nutshell, casts between 'char **' <-> 'unsigned char **' and
'char **' <-> 'const char **' are invalid.
I grepped for "\*\*) &" and found these. There's another one in
demangle.c, but I've split fixing that one to a separate patch.
I think the ada_decode_symbol change is perhaps the one that could be
surprising. The function's description has this comment, which makes
things much clearer:
The GSYMBOL parameter is "mutable" in the C++ sense: logically
const, but nevertheless modified to a semantically equivalent form
when a decoded name is cached in it. */
const char *
ada_decode_symbol (const struct general_symbol_info *gsymbol)
With that out of the way, I think the patch ends up being pretty
obvious.
Tested on x86_64 Fedora 17.
gdb/
2013-03-13 Pedro Alves <palves@redhat.com>
* ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
rather than casting 'const char * const *' to 'const char **'.
* ada-lex.l (processInt): Make "trailer" local const. Remove
'const char **' cast.
* arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
locals, and use those as strtol output pointer, instead than doing
invalid casts to from 'const char **' to 'char **'.
(_initialize_demangle): Remove cast.
* i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
locals, and use those as strtol output pointer, instead than doing
invalid casts to from 'const char **' to 'char **'.
* solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
casts.
* stap-probe.c (stap_parse_register_operand)
(stap_parse_single_operand): Likewise.
Diffstat (limited to 'gdb/ada-lex.l')
-rw-r--r-- | gdb/ada-lex.l | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/ada-lex.l b/gdb/ada-lex.l index e4d72f2..93df2fb 100644 --- a/gdb/ada-lex.l +++ b/gdb/ada-lex.l @@ -329,8 +329,7 @@ processInt (const char *base0, const char *num0, const char *exp0) ULONGEST result; long exp; int base; - - char *trailer; + const char *trailer; if (base0 == NULL) base = 10; @@ -347,7 +346,7 @@ processInt (const char *base0, const char *num0, const char *exp0) exp = strtol(exp0, (char **) NULL, 10); errno = 0; - result = strtoulst (num0, (const char **) &trailer, base); + result = strtoulst (num0, &trailer, base); if (errno == ERANGE) error (_("Integer literal out of range")); if (isxdigit(*trailer)) |