mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
* dlltool.c (identify_search_section): Cast argument, not return
value, of xstrdup to 'char*'.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2008-11-16 Danny Smith <dannysmith@usesr.sourceforge.net>
|
||||||
|
|
||||||
|
* dlltool.c (identify_search_section): Cast argument, not return
|
||||||
|
value, of xstrdup to 'char*'.
|
||||||
|
|
||||||
2008-11-15 Charles Wilson <cygwin@cwilson.fastmail.fm>
|
2008-11-15 Charles Wilson <cygwin@cwilson.fastmail.fm>
|
||||||
|
|
||||||
Added --identify option to dlltool.
|
Added --identify option to dlltool.
|
||||||
|
@ -3106,7 +3106,7 @@ identify_search_section (bfd *abfd, asection *section, void *dummy ATTRIBUTE_UNU
|
|||||||
free (identify_dll_name);
|
free (identify_dll_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
identify_dll_name = (char*) xstrdup (data);
|
identify_dll_name = xstrdup ((char*) data);
|
||||||
}
|
}
|
||||||
|
|
||||||
free (data);
|
free (data);
|
||||||
|
Reference in New Issue
Block a user